ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!
Home
Upgrade
Credits
Help
Search
Awards
Achievements
 2980

Remove the underline on hover from the footer links

by Bi0S - 05-04-2017 - 02:45 AM
#1
Compatible XF Versions:
  • 1.0
  • 1.1
  • 1.2
  • 1.3
  • 1.4
  • 1.5
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: none;
}

To remove the underline from Terms and Rules add this:
Code:
#legal a[href]:hover {
text-decoration: none;
}

To remove the underline from the Style Chooser and Language Chooser add this:
Code:
.footer .choosers a[href]:hover {
text-decoration: none;
}
Reply

Users browsing: 1 Guest(s)