Can you post a url where we can take a peek?
Can you post a url where we can take a peek?
I do have them in that order I just left the top a:link part out when I copied and pasted.
ah, bugger. in that case can you provide more information - HTML code as well as the full CSS of the relevant part, plus what browser and version it is not working in.
IE 7
http://chic-perfumefragrance.com
a:link, #navEZPagesTOC ul li a {
color: #3300FF;
text-decoration: none;
}
a:visited {
color: #990099;
text-decoration: none;
}
a:hover, #navEZPagesTOC ul li a:hover, #navMain ul li a:hover, #navSupp ul li a:hover, #navCatTabs ul li {
color: #FFCCFF;
text-decoration: none;
}
a:active {
color: #FFCCFF;
}
Thanks!
The sideboxes aren't taking their directions from that part of the stylesheet. Further down, you have
Change it toCode:.sideBoxContent a { color: #000000; } a:hover, #navsideBoxContentTOC ul li { color: #990099; }
Code:.sideBoxContent a { color: #000000; } .sideBoxContent a:visited { color: #990099; text-decoration: none; } .sideBoxContent a:hover, #navsideBoxContentTOC ul li { color: #990099; }
I am not trying to correct my side box content colors. I already have them set to black with purple hoover color and they are working fine. I am trying to change the mouse over hoover color on the main page text.
Where it says, "log yourself in" in purple is correct, the already visited pink color is correct, the mouse over hoover color remains purple but should be pink.
http://chic-perfumefragrance.com
I've tried it in Firefox and IE. I get NO hover color in the sideboxes at all. The links remain black.
In both browsers, "log yourself in" goes from a purplish blue to purple on hover. It goes to pink when clicked. It goes back to the purplish blue when returning to the home page.
The section of the stylesheet I mentioned earlier is overriding your earlier setting:
a:hover controls your links. If you expect it to control the links in the sideboxes ONLY, do what I suggested in my earlier reply.Code:a:hover, #navsideBoxContentTOC ul li { color: #990099; }