Is it possible to flush an image against the top or bottom like this site does on each panel (with or without a programmer’s help)?
Also can you import your own icons with any of the recent upgrades? Thx in advance.
Sorry forgot the link: https://en-gb.howareyou.com/healthcare-professionals
Hey,
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');
Insert the “Image” element then add Custom Css Class. For example, add “awesome-image”.
You can add something like this on your custom.css or Quick CSS to move them up or down.
.avia_image.awesome-image {
top: -50px;
}
Regards,
Ismael