Hi there,
You can try adding the following code to your Admin Panel > Appearance > Customize > Advanced Options > Additional CSS field:
.sidebar .sidebar-content, .sidebar .sidebar-toggle {
background: red;
}
Thanks!
Ciao! Thank you @emranemranx, it’s working!
But I would like to make the sidebar background transparent (without posts).
And how can I change the color of the sidebar text?
Thank you!
That code worked for the background when widgets are present. Is there a way to make the sidebars white (or other color) regardless of whether a widget is present or not?
Is there a way to put a border between the sidebars and the content?
-
This reply was modified 7 years, 10 months ago by
kallard.
For me, this worked to make the sidebars and the main content white:
.sidebar .sidebar-content, .sidebar .sidebar-toggle {
background: #fff;
}
.col-2cl .main-inner.group {
background: transparent;
}
To have a border between main content and sidebar I changed this:
.content {max-width: 1037px; border-right: 1px solid #ddd;}
I´m using the theme with 2 columns, right sidebar and a width of 1380px. The max width of the content class is the total width of the content (1038px) less the width of the border (1px).
-
This reply was modified 7 years, 9 months ago by
Michael.
-
This reply was modified 7 years, 9 months ago by
Michael.