XF 2.1 How can i change my header width

See what happens after you put the code below into your extra.less template.

CSS:
.p-nav-smallLogo {
    display: none !important;
}
.p-header-logo {
    max-width: none !important;
}
.has-js .p-header {
    display: block;
}
 
Top Bottom