Are you using the Latest News widget? That one was options in the Customizer for color changing.
If you mean the “Latest News Widget” that hasn’t been updated for two years, no. I’m just using what comes with the moesia theme and pagebuilder.
I just installed the widget and I’m not sure if I expressed myself correctly. So here is a better example:
I just created a new page and added a text widget in page builder. Under the text I entered for the title, there is a double red underline. I would like to change this color.
Right now my site is in “coming soon” mode so I can’t show you unless we schedule a time for you to look at it.
Nope, I meant the widget bundled with the theme.
Anyway, here’s what you need for the text widget:
.widget_text .widget-title::after {
border-color: #333;
}
Add this to a custom CSS plugin and change #333 to the color you want.
Hi.
I tried the same thing but it hasn’t worked? The lines are still orange.
Here’s a link to the section in question:
http://baysidepc.com.au/#site-navigation
Can you help please?
In fact, I’d quite like to change the orange default entirely, but I have no idea where it’s held.
Thanks.
In your case you can use it like this to overwrite for the contact widget too:
.panel.widget .widget-title:after {
border-color: #333;
}
Awesome – it works now.
The problem was a double-colon in the example in post #5 above – the CSS was being skipped.
Thanks again.