Hi Guys,
Is it possible to apply a different color for the iconboxes? I have three iconboxes on one page and want a different color for each iconbox.
Thanks and cheers
Constantin
Hi eightpage!
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 Icon Box then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “first-iconbox”.
You can add something like this on your custom.css or Quick CSS:
.iconbox.iconbox_left.first-iconbox .iconbox_content {
background: red;
}
Regards,
Ismael