XF 2.0 Hide "Your Account" sidebar on Account upgrades page?

iamjudd

Well-known member
I was wondering what the best way to hide the sidebar on the Accounts upgrade page and make the Available upgrades full width?

Currently looks like this:
6jxFN9u.png


Want to look like this:
iWFIb3F.png
 
Try adding this o extra.less template
Code:
[data-template="account_upgrades"] 
{
    .p-body-sideNav {display: none}
    .p-body-main--withSideNav .p-body-content {padding-left: 0;}
}
 
Top Bottom