Remove underline of hover links

Support Area Forums Progress Remove underline of hover links

Viewing 5 posts - 1 through 5 (of 5 total)
URL to the page in question:
  • Author
    Posts
  • #4851
    Tony Dylan-Hyde
    Participant

    Hi bill. I recently reverted to a backup of my site and lost a few customizations along the way. I want to remove the underline of hover links but can seem to replicate what I had achieved before using text-decoration: none. Can you guide me here? Thanks

    #4852
    Bill Robbins
    Moderator

    Tony, Any chance you could send a link to where you’re working on it? That would be helpful.

    Thanks,
    Bill

    #4869
    Tony Dylan-Hyde
    Participant

    Bill,

    I’m working on my site at http://www.advancingcompassion.org

    Thanks, Tony

    #4877
    Bill Robbins
    Moderator

    Thanks for the link. It looks like the underline declaration was being added by the sociable plugin. You can override it though. You can either find this spot in the style.css file:

    a:hover {
    text-decoration: none;
    color: #89511c;
    }

    and change it to this:

    a:hover {
    text-decoration: none !important;
    color: #89511c;
    }

    or add this to the Custom CSS box on the styling tab:

    a:hover { text-decoration: none !important }

    Either way should work for you. If you have any other trouble, let me know.

    Great looking site by the way.

    #4924
    Tony Dylan-Hyde
    Participant

    Thanks Bill. That did the trick. And thanks for your kind words regarding our website…I had a good framework to begin with.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Remove underline of hover links’ is closed to new replies.