Archive for the ‘HTML / CSS’ Category

Valign Using CSS

Friday, October 3rd, 2008

td {
text-align: top;
vertical-align: top;
}

HTML + CSS menu

Saturday, July 19th, 2008

Horizontal with subnva
http://phoenity.com/newtedge/horizontal_nav/#inline

Horizontal
http://www.wings-properties.co.uk

PHP HTML - Display Data in CSV or HTML Table Format

Tuesday, July 15th, 2008

csv_html_dispay

Javascript: Check / Uncheck All The Checkboxes Of a Certain Group

Thursday, July 3rd, 2008
/*
 * It checks all the checkboxes of a certain group (that shares a name like this: checkboxes[])
 *
 * @param the Javascript Element that contains all the checkboxes of a certain group
 *
 * Example of usage:
 * var checkboxesObj = document.getElementsByName(’checkboxes[]’);
 * selectAllCheckboxes(checkboxesObj);
 */

function checkAllCheckboxes(checkboxesObj)
{
    var checkboxesLength = checkboxesObj.length;
    for(var i = 0; i < checkboxesLength; i++) {
        checkboxesObj[i].checked = true;
    }
}

Fix IE6 Layout Bugs With Javascript

Thursday, July 3rd, 2008

http://sourceforge.net/projects/ie7/
http://dean.edwards.name/IE7/

Identify a Font Face

Thursday, June 26th, 2008

http://www.myfonts.com/WhatTheFont/

http://www.identifont.com/

http://www.whatthefont.com

CSS: Make a Table Row Appear and Disappear (Cross Browsing)

Friday, May 30th, 2008

To make it disappear (as usual):

xxxx.style.display = “none”;

To make it appear:

xxxx.style.display = “”;

The last trick is because, this:

xxxx.style.display = “table-row”;

wouldn’t work in IE6 and IE7

CSS Libraries / Layouts

Friday, May 30th, 2008

http://www.dynamicdrive.com

Free HTML Templates

Friday, May 2nd, 2008

http://www.freelayouts.com/

Bullet Collection for Unordered List

Tuesday, March 25th, 2008

http://www.stylegala.com/features/bulletmadness/