How do i give a 1/2 field, filled with a widget a custom colour?
Hey Benjaminlivingthebrand!
You can add a unique selector for each Avia Elements. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
add_theme_support('avia_template_builder_custom_css');
Edit any avia elements like Widget Area then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “awesome-widget”.
You can add something like this on your custom.css or Quick CSS:
.awesome-widget {
background: blue;
}
Regards,
Ismael