You want to hide links in menus and then show them when they are clicked. Start by setting up the lists Links OracleHome Then create a css rule to prevent the second set of links from displaying when the page
Create a submit button that looks like an HMTL link
How to create a submit button that looks like an html text link. Then apply CSS properties to strip away the submits button borders and background color .submit { border:none; background-color: #fff; padding: 0; margin: 0; width: 5em; } Then
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.
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