Hi, Good morning!
I am trying to create a widget to the header of the web.
I need to put 3 lines of short text below the icons of social networks.
How I do? , some help please!
I’ve looked at other questions and I don’t look the answer.
Thank you
Screen example:
http://www.marvinprimera.com/img/example.jpg
Hey Marvin!
There is a filter for that, try adding this at the very end of your theme / child theme functions.php file:
function put_stuff_before_main_content() {
echo "<div>stuff</div>";
}
add_action('ava_main_header', 'put_stuff_before_main_content');
Cheers!
Josue
Hi,
Thanks for responding.
I’ve already put the code in functions.php, and the text appears in the header.
Is there any way to align the text to the buttons of social networks?
Hi,
http://www.marvinprimera.com/silvia/
Regards and thanks!
Hey!
Please change the code Josue posted to following one
function put_stuff_before_main_content() {
echo "<div class='my-class'><div class='container'>stuff</div></div>";
}
add_action('ava_main_header', 'put_stuff_before_main_content');
and then add following code to Quick CSS in Enfold theme options under General Styling tab
.my-class { float: right; }
Best regards,
Yigit