XF 2.0 Make header and footer same width as page width?

Hristo Avramov

Active member
Licensed customer
Hello,
Is it possible to make header and footer the same width as page width? For example in xenforo forums the header and footer are longer than the page width of the node/list.
 
Gods know mate. Mess with this in your extra.less
Code:
.p-pageWrapper {
width: 1200px !important;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 1190px) {
 .p-pageWrapper {
width: auto !important;
margin-left: auto;
margin-right: auto;
}
}
 
Back
Top Bottom