Move Sidebar Left

Move Sidebar Left 2023-04-19

No permission to download
D

Deleted member 184953

Guest
Nicolas FR submitted a new resource:

Move Sidebar Left - Move the native XF sidebar to the left of the forum layout

A simple add-on that allows you to display the sidebar which is natively on the right on the left side of the form layout. The sidebar is moved automatically when the add-on is installed, there is no activation or deactivation in the style properties. To put the sidebar back on the right simply deactivate the add-on.


View attachment 277114

Read more about this resource...
 
Really wish Xenforo had a left and right option. Seems the only solutions out there are either/or. I'd like to have widgets on both sides.
 
Do I need to register on the French site to download this? It currently says I have no permission to download it.
 
Yep, you have to register and validate your XF licence first.
 
Hi, it's great and exactly what I was looking for. But when I move the sidebar to the left, it's not as wide as it's supposed to be. The width set above has no effect. any idea?
 
ChatGPT got me a working code for the extra-less:
@media (min-width: @xf-responsiveWide)
{
.p-body-main--withSidebar
{
display: flex;

.p-body-sidebar
{
order: 1; /* Sidebar wird zuerst angezeigt */
}

.p-body-content
{
order: 2; /* Inhalt wird nach der Sidebar angezeigt */
padding-left: @xf-sidebarSpacer; /* Abstand zwischen Sidebar und Inhalt */
padding-right: 0; /* Kein Abstand rechts notwendig */
width: calc(~'@{xf-pageWidthMax} - @{xf-sidebarWidth} - @{xf-sidebarSpacer}');
}

.p-body-sidebarCol
{
display: none;
}
}
}
It's perfect now! :D

https://forum.leben-mit-pmds.de

I'm happy!
 
Back
Top Bottom