Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
.p-footer-custom .xb-footer-block .pairs {
padding: 5px 0;
}
.p-footer-custom .xb-footer-block ul.footerList li {
margin: 0;
}
I think you're referring to the padding going on here.
You can add this to extra.less:
Code:.p-footer-custom .xb-footer-block .pairs { padding: 5px 0; } .p-footer-custom .xb-footer-block ul.footerList li { margin: 0; }
The first bit is for the pairs, (forum stats), the second bit is for the links.
/* PixelExit Extended Footer - True Single Spacing & Global Link Styling */
/* 1. Forum Statistics: Collapse padding and force tight line height */
.p-footer-custom .xb-footer-block .pairs {
padding: 0 !important;
line-height: 1.2 !important;
}
/* 2. Footer Links: Single spacing + match forum link style & color */
.p-footer-custom .xb-footer-block ul.footerList li {
margin: 0 !important;
line-height: 1.2 !important;
a {
padding-top: 1px !important;
padding-bottom: 1px !important;
line-height: 1.2 !important;
color: @xf-linkColor !important;
text-decoration: none;
&:hover {
color: @xf-linkColor--hover !important;
text-decoration: underline;
}
}
}