Hi,
I have a CSS style sheet and my webpage
www.jonathan-adams.co.uk/media/gallery
in the purple box at the top i have links to different pages. I want to change them links to white but leave the rest of the link colors black. I have used the following code:
#navsub {
height: 16px;
width: 553px;
border: 1px solid #000000;
background-color: #AD33FF;
text-align: center;
vertical-align: middle;
padding-top: 2px;
font-family: Tahoma;
font-size: 12px;
font-weight: bold;
color: #FFFFFF
}
#navsub.a:link, a:visited {
color: #FFFFFF;
}
this code successfully changes the link color in the purple box and the link color of the links bellow in the main content tag.
can anyone help me with the css code?
|