Changing font color of a single title in sidebar

I need to change the font color of the title of the third widget in the Main Sidebar. How can I change the font color of a single title in the Main Sidebar without changing all of the titles?

Hi there,

Would you mind specifying which title you want to change the color so that we could provide you with the code?

Thank you.

I want to change the font color of the third widget in the sidebar titled “Save The Date – June 2, 2018”. Thank you.

Hi There,

Please add this on X > Launch > Theme Options > CSS

#text-15 .h-widget {
	color: red;
}

Replace the red with your desired color.

The #text-15 here is the unique ID of your Text widget where the Save The Date – June 2, 2018 is in, keep in mind that this ID change when you move Widgets around.

To see the widget ID, right click the title and choose inspect. Then see the ID of the div just above the title.

screenshot

Thanks,

Thank you. Many thanks for explaining how to identify the unique ID of the text.

You are most welcome @eutaw :slight_smile:

Cheers!

Hi there,

I am having a similar problem however it is with the Events Calendar Plugin widget title on the homepage. Below is the code I tried to use to fix the problem but it isn’t working. Any suggestion on how I can fix it?

Thank you,

www.rentschbrewery.com

.x-main .h-widget {
color: black;
}

Hi There,

Please change your custom CSS to this:

.x-main .h-widget font {
    color: black !important;
}

Thank fixed it! Thank you!

You are most welcome. :slight_smile: