Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1440461

    Hi,
    how can i change the background color of the sidebar ?
    Hans

    #1440464

    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:
    Enfold_Support_5571.jpeg
    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:
    Enfold_Support_5573.jpeg
    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

    #1440538

    Great, Thank you!

    #1440540

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘change sidebar background color’ is closed to new replies.