Tagged: header
Hi Support,
I would like to add the words ‘Contact ons’ to the Footer. Like this:
Is that possible?
Thanks in advance.
Hey Alfredo,
Thanks for contacting us!
Please add following code to functions.php file of your child theme – https://kriesi.at/documentation/enfold/child-theme/
add_action('ava_before_footer','footer_content_new');
function footer_content_new(){
echo "<div class='my-custom-title'>Contact Ons</div>";
}
Then you can add following code to bottom of Quick CSS field to change the styling
.my-custom-title { color: red; font-size: 32px; }
Regards,
Yigit
Hi Yigit. Thank you. I will try this later.