• Resolved GBCommerce

    (@gbcommerce)


    Hi,
    how do I change the background color of the sidebar? I tried adding this code to the advanced settings but it didn’t work.
    ‘#sidebar {
    background:#eb7e2c;
    }’

Viewing 4 replies - 1 through 4 (of 4 total)
  • Try this

    .sidebar {
    background-color: #eb7e2c;
    }

    You’ll have to modify the margin and padding give it a better look.

    Thread Starter GBCommerce

    (@gbcommerce)

    Thanks, that worked. Yes padding needs adjustment. How do I change it? Using inspect element in chrome to check size since don’t have access to css.

    This CSS will do the trick

    .sidebar {
        background-color: #EB7E2C;
        padding: 25px 0 0 30px;
    }
    aside {
        margin: 15px !important;
    }

    Play with the margin and padding values till you’re satisfied.

    Thread Starter GBCommerce

    (@gbcommerce)

    Thanks Jesin. Lifesaver!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Change Sidebar Color’ is closed to new replies.