Just when I thought I was beginning to understand this stuff....
I am having a problem getting link effects to work properly. Here is my CSS.....
And here is the html
The only effect that seems to work is that the links are not underlined. Any help would be appreciated.
I am having a problem getting link effects to work properly. Here is my CSS.....
Code:
#bar
{
position: relative;
margin-top: 10px;
width: 800px;
height: 75px;
float: center;
background-color: #a3b2d9;
}
.bar a:link {text-decoration: none; color:#20449a;}
.bar a:visited {text-decoration: none; color:#000000;}
.bar a:active {text-decoration: none; fcolor:#fffa00;}
.bar a:hover {font-size: 12; text-decoration: underline overline; color: #fffaoo}
And here is the html
Code:
<div id="nbar"><table border="0" cols="4" width="100%" cellpadding="1" cellspacing="1">
<tr><td width="100%" colspan="4" align="center">
<marquee scrollAmount="9" scrollDelay="125" width="600" bgColor="#a3b2d9" height="18" style="color:#fffa00;">
Marquee text</marquee></td></tr>
<tr><td width="25%" align="center"><a href="link.htm">link text</a></td>
<td width="25%" align="center"><a href="link.htm">link text</a></td>
<td width="25%" align="center"><a href="link.htm">link text</a></td>
<td width="25%" align="center"><a href="link.htm">link text</a></td></tr>
<tr><td width="100%" colspan="4" height="3"></td></tr>
<tr><td width="25%" align="center"><a href="link.htm">link text</a></td>
<td width="25%" align="center"><a href=".php">Blank</a></td>
<td width="25%" align="center"><a href=".php">Blank</a></td>
<td width="25%" align="center"><a href="more.htm">More Searches</a></td></tr></table></div>
The only effect that seems to work is that the links are not underlined. Any help would be appreciated.