Remove the underline on hover from the footer links

Remove the underline on hover from the footer links

Paul B

XenForo moderator
Staff member
Brogan submitted a new resource:

Remove the underline on hover from the footer links (version 1.0) - Let's draw a line under those links. Or not as the case may be.

Someone asked how to remove the underline on hover from the footer links so here are some simple edits to achieve that.

Again, add all custom css to EXTRA.css.


To remove the underline from the copyright text add this:
Code:
#copyright .concealed:hover {
text-decoration: none !important;
}


To remove the underline from Contact Us, Home & Top add this:
HTML:
.footerLinks a[href]:hover {
text-decoration: none;
}


To remove the underline from Terms and...

Read more about this resource...
 
Top Bottom