Home › Forums › Support › Style sidebar widgets individually › Reply To: Style sidebar widgets individually
June 18, 2016 at 12:11 am
#202899
Lead Developer
Lead Developer
You need to use your browser’s code inspector to find the specific IDs for the widgets you’re trying to alter, for example: http://screencast.com/t/TiXaLlJHvb
The CSS you added above is missing a selector, not sure if that’s intentional?
The class for the widget title is .widget-title
So CSS to apply to all widget titles would be:
.widget-title {
/* CSS in here */
}
And a specific widget:
#unique-widget-id .widget-title {
/* CSS in here */
}