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

    Hello! I’m trying to change the background of our blog’s main page and a single post to white, while still leaving the side panel grey. Help!

    #1085285

    Hey Lead,

    Try adding this css code in Quick CSS, located in Enfold > General Styling:

    #top.single-post #main .main_color.container_wrap_first.container_wrap.sidebar_right,
    #top.page-id-14069 #main .main_color.container_wrap_first.container_wrap.sidebar_right {
        background: #ffffff !important;
        background: -moz-linear-gradient(left, #ffffff 0%, #ffffff 50%, #f8f8f8 52%, #f8f8f8 100%) !important;
        background: -webkit-linear-gradient(left, #ffffff 0%,#ffffff 50%,#f8f8f8 52%,#f8f8f8 100%) !important;
        background: linear-gradient(to right, #ffffff 0%,#ffffff 50%,#f8f8f8 52%,#f8f8f8 100%) !important;
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f8f8f8',GradientType=1 ) !important;
    }
    
    #top.single-post #main .main_color.container_wrap_first.container_wrap.sidebar_right main,
    #top.page-id-14069 #main .main_color.container_wrap_first.container_wrap.sidebar_right main {
        background-color: white;
    }
    
    #top.single-post #main .main_color.container_wrap_first.container_wrap.sidebar_right aside,
    #top.page-id-14069 #main .main_color.container_wrap_first.container_wrap.sidebar_right aside {
        background-color: #f8f8f8;
    }

    Best regards,
    Nikko

    #1085556

    This worked perfectly. Thank you!

    #1085608

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Change Background of Blog (Main Blog Page AND Single Blog Posts)’ is closed to new replies.