XF 1.3 how to set all the links "without" UNDERLINE on hover?

Echelon

Active member
how can i set all the links on my forum without the agitating underline on hover?

i have tried some options but can't get it right.
 
Try adding this to EXTRA.css:
Code:
a:hover
{
    text-decoration: none !important;
}

Thanks Brogan. Tried this already but they won't disappear

i even tried this.....set underline to none

a:-webkit-any-link {
color: -webkit-link;
text-decoration: underline;
cursor: auto;
}

iunderline.webp


but then my colorscheme goes out of his mind
 
Unfortunately that has this:
upload_2014-4-19_11-22-44.webp

The !important there is most likely overriding.

You may need to edit the CSS templates directly for some of the links.
 
Top Bottom