• Resolved greenhornbully

    (@greenhornbully)


    my stylesheet has this:

    a:link{text-decoration:underline;color:#eee;border:none;}
    a:active{text-decoration:underline;color:#eee;border:none;}
    a:visited{text-decoration:underline;color:#eee;border:none;}
    a:hover{text-decoration:underline;color:#eee;border:none;}

    However the links format is not changing.
    Any Suggestions?
    Thanks.

Viewing 8 replies - 1 through 8 (of 8 total)
  • What’s the link to your page? It can be helpful to see this style-sheet in use so we can see what’s broken.
    Also, try formatting the CSS with spaces after all “;” characters and before all “{}” characters. That could be causing some issues. As in

    a:link {
    text-decoration:underline;
    color:#eee;
    border:none;
    }

    But, most importantly, give us a link to the page that’s causing problems, otherwise we can really diagnose

    Thread Starter greenhornbully

    (@greenhornbully)

    i dont see the settings you say you added in that stylesheet anywhere

    Thread Starter greenhornbully

    (@greenhornbully)

    boober- i changed it after taking mycombs’ advice.

    right now its at

    a {
    color: #2175BC;
    text-decoration: none;
    }

    a:hover {
    text-decoration:underline; color: #FF7400;
    }

    but still no change….hmmmm

    find and delete (or edit) this line:
    a:link,a:active,a:visited,a:hover{text-decoration:none;color:#000;border:none;}

    Thread Starter greenhornbully

    (@greenhornbully)

    hey haochi! what i did was delete it to see the effects.
    but nothing had changed. is it possible that the link style could be overwritten?

    Well, you are supposed to keep

    a{color:#2175BC;text-decoration:none;}
    a:hover{text-decoration:underline;color:#FF7400;}

    and delete
    a:link,a:active,a:visited,a:hover{text-decoration:none; color:#000;border:none;}

    Thread Starter greenhornbully

    (@greenhornbully)

    THANKS. actually i had 2 of

    a:link,a:active,a:visited,a:hover{text-decoration:none; color:#000;border:none;}

    in the css style sheet. i found it. thanks haochi!

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Stylesheet changed, Link still the same??’ is closed to new replies.