Thread Starter
jazzu
(@jazzu)
I managed to fix it.
If anyone needs help with it, here’s how I did it:
Go to inspect element, fiddle with it until you find div.sidebar-main, go to the style.css, and it should show .sidebar-content-area {.
I added .sidebar-main { above it, and then (with the borders of the sidebar box showing) played around with width. Sidebar-main controls the right side of the sidebar and .sidebar-content-area { controls the left side.
In my case, I used this:
.sidebar-main {
position:absolute;
float: left;
width: 33.3%;
}
.sidebar-content-area {
width: 5%;
box-sizing: border-box;
float: right;
}
Hope this helps.
-
This reply was modified 4 years, 5 months ago by
jazzu.