This can be accomplished using the tag. Contact Info Extra Details You can also add CSS rules to the fieldset and legend items such as margin-bottom, borders, fonts and padding.
Making popups via DHTML
You can easily simulate a popup window using DHTML together with div and span tags. Start off by hiding the div area then use javascript to unhide the div tag when required. rollover here This is only visible if your
How can I get a popup link to work if the user has javascript switched off
Just set the value of the href attribute to the page used in the pop-up and the javascript used to launch the pop-up window should return false. This way if a user does not have javascript enabled or does not
Replace your logo image with a hidden H1 tag
There are several ways to accomplish this, such as: Company Name h1 span { display:block; height:0; overflow:hidden; } There is another way without using span tags Company Name h1 { background-image: url(images/logo.gif); width:300px; height:129px; font-size:1px; text-indent: -999em; } The problem
Remove padding from CSS lists
By default most lists have padding to the left, internet explorer will apply a margin and other browsers will add padding. So to get rid of this, add this: ul { padding: 0; margin: 0; }
How to add a border to every cell in a table
td { border: 1px solid black } table { border-collapse: collapse } This will involve border collapsing, which will push the cells together which will leave only the wider of the two adjacent borders visible.
