• Hey all
    I managed to get rid of the lines from under each link for individual posts long ago (adding text-decoration:none to a:links etc. in the wp-layout.css) but never worked out how to get rid of them from the sidebar links. I assume there’s somewhere else for me to include the same info that’s relevant to the sidebar links but where?
    Thanks for looking in.

Viewing 3 replies - 1 through 3 (of 3 total)
  • In your css, first look for the various #menu declarations. You should find at least a few like #menu ul ul li a, which would need the text-decoration property assigned.

    #menu ul ul li a:hover {
    text-decoration:none;
    }
    Use that – by editing what you have already – your links then colour when hovered

    Thread Starter reevo

    (@reevo)

    Fantastic, you guys are the greatest tech support there is 🙂
    Thanks very much

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Removing underline from links’ is closed to new replies.