Hi,
how can i change the background color of the sidebar ?
Hans
Hey hansloe,
Thanks for the link to your page, this depends on what you want to achieve, if you wanted the sidebar only to be white then you could use this css in your Quick CSS field:
#top #main .sidebar {
background-color: #fff;
}
but the result would be like this with the space to the right of your sidebar gray like the other side:
If you want the space to the right of your sidebar also white then try this css:
@media only screen and (min-width: 768px) {
#top #main .container_wrap_first.sidebar_right {
background: linear-gradient(
to right,
#ebebeb 0%,
#ebebeb 50%,
#ffffff 50%,
#ffffff 100%
);
}
#top #main main {
background: #ebebeb;
}
}
which will give this result:
Please adjust the color to suit and ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
Mike
Great, Thank you!
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike