Hi,
Is there any way to change the color of the sidebar?
Thanks.
Hi wackyadventurer!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#top #main .sidebar { background-color: red; }
and adjust as needed
Best regards,
Yigit
Is it possible to color the entire sidebar area, basically, from where the border begins to the edge and all the way to the footer?
Hey!
I’m sorry but the height of the sidebar will depend on the number of widgets inside of it. You need to create a script that will get the height of the content container and apply it on the sidebar. This way, the sidebar will always have the same the height as the content container. You can then apply the css code above. Something like this: http://stackoverflow.com/questions/3275850/set-a-div-height-equal-with-of-another-div
Regards,
Ismael
Thanks for quick reply!
Will look into it!
Maybe not the sexiest way to do it. But it served my purpose:
#after_section_1 {
background-color: #F3F3F3 !important
}
div.template-page {
background-color: #FFF !important;
}
.sidebar_left .content {
border-left: none;
}
.sidebar_left .content {
float: right;
margin-right: -133px;
margin-left: -1px;
padding-left: 50px;
padding-right: 86px;
}
@media only screen and (max-width: 767px) {
.sidebar_left .content {
float: right;
margin-right: -50px;
margin-left: -1px;
padding-left: 50px;
padding-right: 0px !important
}
}
@media only screen and (max-width: 767px) {
#after_section_1 {
background-color: #FFF !important;
}
}