hi all!!
This is my text only back-up menu at the bottom of my page, but the colours from my origional external css sheet look bad on its background, so how do i make them a different colour? Here is the code for the hyperlink:
<tr>
<td> </td>
<td height="20" class="stylesheet3" valign="bottom" body><div align="center" ><font face="Arial, Helvetica, sans-serif"><a href="[URL]" ><font size="-2">Home</font></a><font size="-2">
| <a href="<A href="">Gallery</a">">Gallery</a> | <a href="<A href="">Adobe">">Adobe
Gallery</a> | <a href="<A href="">Art">">Art Packages</a>
| <a href="<A href="">Customise</a">">Customise</a> | <a href="<A href="">Buy</a">">Buy</a>
| <a href="<A href="">The">">The Process</a> | <a href="<A href="">Special">">Special
Offers</a></font></font></div></td>
<td> </td>
</tr> Here is my css code that i have at the moment:
.stylesheet1 {
font-family: arial;
font-size: 12px;
font-style: normal;
line-height: normal;
font-variant: normal;
color: #000000;
text-align: left;
}
a:link{
color: #990000;
text-decoration: none;
}
a:visited{
color: #AF1E2D;
text-decoration: none;
}
a:hover{
color: #808080;
text-decoration: underline; and here is how i want the hyperlinks to look like:
a:link{
color: #000000;
text-decoration: none;
}
a:visited{
color: #333333;
text-decoration: none;
}
a:hover{
color: #999999;
text-decoration: underline; Thanks!!!