XF 1.4 Style links

flitigalisa

Active member
I've now come quite far using the Style Poperties but cannot seem to find the setting in which I can make my links (in posts) not to change layout, colours and get a drop shadow when hovering on top of them in the forums.

So I'd really like to remove this but under which Style property group do I find them`?
 
Add this to EXTRA.css to remove the shadow and use the standard line most links use when being hovered over:

Code:
.emCtrl:hover, .emCtrl:focus, .ugc a:hover, .ugc a:focus {
    box-shadow: none !important;
    text-decoration: underline !important;
}
 
Top Bottom