Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #22372

    Hello. Where in the CSS code can I remove the underline hyperlinks and replace with a hover color? Thanks.

    #115564

    I’d love to know the answer as well :)

    #115565

    An easy answer is to use the quick-CSS option and do the following:

    a {
    color: blue; /* non-hover color */
    }
    a:visited {
    color: yellow; /* visited link color */
    }
    a:hover {
    text-decoration: none;
    color: red; /* hover color */
    }

    You can set these colors via the theme settings, but to get rid of underlines, you only need the following:

    a:hover {
    text-decoration: none;
    }

    #115566

    Thanks lenscraft. :)

    #115567

    gotta love the support for this theme. thank you!

    #115568

    Hey,

    Thanks lenscraft. :)

    Regards,

    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Remove Underline on Hyperlinks’ is closed to new replies.