Hi,
I created a custom widget location here:
add_action( ‘ava_after_main_container’, ‘enfold_customization_header_widget_area’ );
function enfold_customization_header_widget_area() {
So it is in the main section. Is there a way for me to control just this one widget via CSS? When I use:
#main .widget { }
It affects all of the widgets under #main.
Thanks,.
Resolved. I found the unique ID value for the widget in the source code:
<div id=”text-6″>
And then I reference that in the CSS:
#main #text-6 {
This topic can be closed.