Compatible XF Versions:
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:
To remove the underline from Contact Us, Home & Top add this:
To remove the underline from Terms and Rules add this:
To remove the underline from the Style Chooser and Language Chooser add this:
- 1.0
- 1.1
- 1.2
- 1.3
- 1.4
- 1.5
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;
}