Dadparvar

Registered
Hey @Russ

We use Bob's add-ons (ams, ubs, sc, rms)

As you know they all have sidebar.

Now in our website using Nova, we set the sidebar of the site to be in left (our site let's say is RTL)

So, the canvas menu appears in right side, and the sidebar in forums appears in left side (so far, so good)

But when we switch to blog or reviews or articles or showcase page, the sidebar of those pages are in right side, right next to the canvas menu.

Would you please add an option to the style properties as "force 3rd party add-ons' sidebar to follow the style" so that if we select it, then those add-ons' sidebar also be displayed on the side we select in our style.

Thanks
 
As far as I know this isn't something I'd be able to handle on a style level. XF has 2 "sidebars", one is a sidebar and one is a side nav. Sidenav = help pages, accounts ect, RM GALLERY and other add-ons use these and the blocks are placed there via a template.

I guess you could use some basic css:

Code:
.XenBase .p-body-main
{
    display: flex;
    @media (max-width: @xf-responsiveWide) { display: block; }
    .p-body-sideNav { order: 2; }
    .p-body-content
    {
        flex: 1 1 auto;
        padding-left: 0;
        padding-right: 30px;
        @media (max-width: @xf-responsiveWide) { padding-right: 0; }
        order: 1;
    }
}

This would shift things around.
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back