Resource icon

XF 1 Tip Remove the underline on hover from the footer links

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,811
Points
823

Reputation:

LQD submitted a new resource:

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

This resource is not affiliated with XenForo Ltd.

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:

Code:
.footerLinks a[href]:hover {
text-decoration...

Read more about this resource...
 
Top