Sidebar background color won't change

Hi there,

I am trying to get the background color for my sidebars to change. I have gone to theme options - layout and design - background colour and have chosen the color that i want, but nothing has changed.

Do you know what I am doing wrong here?

Thank you,
LS

Hi There,

Thanks for writing in! Is it a right sidebar? Could you please try adding the following CSS rule into your Theme Options > Global CSS area and then change the color value accordingly.

.x-sidebar.right {
  background-color: #e4e4e4;
}

Hope that helps.

Hi Darshana,

It is actually a left sidebar, but even after altering the code for that, it didn’t work, unfortunately.

LS

Hi There,

In that case, please change the code as follows and test.

.x-sidebar.left {
  background-color: #e4e4e4;
}

Hope that helps.

As I said, I tried that but it didn’t make any difference

Hi There,

Please provide us with the URL to your referenced link, so that we can look into your issue.

Thanks!

Attaching the info now

Hi There,

In your particular situation, you need to use the following CSS rule without .left or .right class.

.x-sidebar {
  background-color: #e4e4e4;
}

Hope that helps.

Thank you, Darshana, it works now

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.