some links adhere to css, some dont?

Discussion in 'CSS' started by gthomas3, Sep 26, 2009.

  1. #1
    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
     
    gthomas3, Sep 26, 2009 IP
  2. myst_dg

    myst_dg Active Member

    Messages:
    224
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    58
    #2
    Are you sure? I see every single link is underlined, and the underline disappears when hover.
     
    myst_dg, Sep 27, 2009 IP
  3. appleranger

    appleranger Peon

    Messages:
    339
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I also see every link underlined, and then they just disappear. You may need to fix that problem.
     
    appleranger, Sep 28, 2009 IP
  4. wd_2k6

    wd_2k6 Peon

    Messages:
    1,740
    Likes Received:
    54
    Best Answers:
    0
    Trophy Points:
    0
    #4
    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.
     
    wd_2k6, Sep 28, 2009 IP