XF 2.0 Anyone know how best to achieve this?

RoyalRumble

Well-known member
Licensed customer
Hi guys

I'm hopeful someone can kindly assist.

I'm trying to replicate our XF1 install for XF2 prior upgrading.

For XF1 Install our background is like so;


but on our XF2 install, I can't figure out how to have a solid white background - with just the image background down the side/behind header.


Been battling with this for two hours - any help would be really appreciated.
 
Last edited:
Oh and bonus points if anyone can advise how to stop the navigation tab from going all the way across the screen (hoping to stop it at the edge like we have on XF1)
 
Hard to tell really without a link to your XF2 installation.
Try this in extra.less
Code:
.p-body-inner {
    background: #ffffff;
    border-right: 1px solid #232323;
    border-left: 1px solid #232323;
    padding: 15px;
}

Change colors how you wish.
 
Last edited:
Hard to tell really without a link to your XF2 installation.
Try this in extra.less
Code:
.p-body-inner {
    background: #ffffff;
    border-right: 1px solid #232323;
    border-left: 1px solid #232323;
    padding: 15px;
}

Change colors how you wish.

Thank you very much, hugely appreciated.
 
Back
Top Bottom