hey everyone, just created this page on my skin care site (http://www.acnecareanswers.com). Some hyperlinks are adhering to my css and some aren't. The css is very simple: http://www.acnecareanswers.com/style.css For example, in the menu on the left: the top link is underlined, while the others are't. They're meant to look like the majority, but the one at the top is underlined for some reason? This also occurs throughout the page. All links are underlined, except the single link at the bottom: 'Click here to check out their system' All links are created with simple, simple tags, nothing fancy. I'm stumped, anyone have an idea of what's up? Thanks for any info! Graham
The problem is occuring, because you have visited that webpage, and the CSS is set that the link is not to be underline if the page has been visited. So if you visit that reccomends/clearpores page, all of your menu is linked to this page, including the link at the bottom, so they will all have no underline after the page has been visited. The style of vistied links is defined by a:visited, and this can be seen at the top of your stylesheet: A:visited {[B]text-decoration: none; [/B]color: #3B5DB4;} Code (markup): Remove the text in bold if you want to prevent this from happening.