Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #258521

    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

    #258578

    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

    #260917

    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');

    ?

    • This reply was modified 10 years, 6 months ago by Guilherme.
    #260948

    Hey!

    You should go to Enfold theme options > General Styling > Quick CSS field and add your custom CSS code as following

    .cusotm_content { color: red; font-size: 14px; }

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.