How can I place some code exactly underneath the social icons place which are on the right side of the header itself?
The website is: http://www.domussapiens.com.br
Hey Guilherme!
There is a hook you can use:
function after_head_image_func(){
echo "<div class='custom_content'>ola</div>";
}
add_action('ava_main_header', 'after_head_image_func');
After that you’d just need to adjust .custom_content with CSS.
Regards,
Josue
Which I do how?
function after_head_image_func(){
echo "<div class='custom_content' style="blablabla">ola</div>";
}
add_action('ava_main_header', 'after_head_image_func');
?