Widget title text color

Hi there,

I am trying to change the text color of the widget titles in the sidebar on the webshop page. And i think the css is conflicting with my other sidebar. The webside is iamlove.world
I already succeeded in changing the text colors for both sidebars, but the titles are tricky :sweat_smile:
Let me know if you need some additional info.

Thanks in advance!

Hi There,

To change the color of the widget title, please find this custom CSS:

.post-type-archive-product .x-sidebar .h-widget,.post-type-archive-product .x-main .widget a,.x-sidebar .widget a {
     color: #fff !important;
}

And change to this:

.post-type-archive-product .x-main .widget a,
.x-sidebar .widget a {
     color: #fff !important;
}

After that add this custom CSS:

body .x-main .h-widget, 
body .x-sidebar .h-widget {
    color: #000 !important;
    border-color: #000 !important;
}

Hope it helps :slight_smile:

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