Russ
Pixel Exit Staff
This bug is affecting versions 2.0.12 and potentially the latest beta versions. It's hard to replicate it so it's a bit troublesome in finding a proper fix but... for now you can do this to stop the errors.
Open xb_footer.less on your PARENT style, the one that says DO NOT EDIT. Yes... I'm giving you permission to edit this.
Should be line: 22, find:
Replace with:
End result should look like so:
Open xb_footer.less on your PARENT style, the one that says DO NOT EDIT. Yes... I'm giving you permission to edit this.
Should be line: 22, find:
Code:
.m-pageWidth();
Replace with:
Code:
max-width: @xf-pageWidthMax;
padding: 0 @xf-pageEdgeSpacer;
margin: 0 auto;
End result should look like so:
Code:
.p-footer-inner
{
max-width: @xf-pageWidthMax;
padding: 0 @xf-pageEdgeSpacer;
margin: 0 auto;
.p-body & { max-width: 100% !important; padding-right: 0; padding-left: 0; }
}
Last edited: