Change colour of headings and font in sidebar (Pro)

Hi
Please can you tell me how I can change all the text colour in the sidebar (from blue to black)

Is it possible to get the boxes with the titles in to be black with a white background?
thank you!

Hi There,

Please try adding this custom CSS under Theme Options > CSS:

.x-sidebar h4.h-widget {
    color: #000;
    background: #fff;
    border-color: #000;
}

Hope it helps :slight_smile:

thank you, that is nearly there, I love the white background in the boxes, how do I get the paragraph text in the widgets to change colour too please. I cannot work out where I set it to be blue in the first place!

I did it, thank you, your code really helped.
I managed to make sense of it with this https://theme.co/apex/forum/t/widget-background-colour/17063/2

and made this
.x-sidebar .widget p{
color: #000;
line-height: 1.2em;

}

huge thanks!
the only bit that is still blue is the shopping cart but I’m not so fussed about that.
Any idea where I set the blue in the first place?

Hi There,

Sorry, but I could not find a blue shopping cart on the sidebar, please clarify.

Thanks,

if you add something to the cart in the shop it will show up in the sidebar, the cart details show up blue.

Hi There,

Thanks for writing in!
If you are talking about this text.

Please add this CSS to change the color.

.mini_cart_item .quantity {
 color: #000;
}
.buttons .wc-forward {
color: #000 !important;
}

hope this helps!

totally perfect! thank you, I’m so happy with that, you are a star!

You are most welcome. :slight_smile:

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