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

    Hey thanks for all your help thus far, I have one more question.

    Is it possible to put an image or text on the right side of the header? Like Logo on the left side of the header, then a phone number on the right side? Not on the secondary info top bar, but in the actual header, above the menu? Could I just make one long logo image? Here is my build http://cre8tvepro.com/lafaveredo/ trying to replicate this http://www.lafavesmetalroofing.com/

    Thanks,

    #291567

    Hey Cre8tve_works!

    Seems like you have added and image and figured it out. If you would like to change it to text, please add following code to Functions.php file in Appearance > Editor

    add_action('ava_after_main_menu','custom_things');
    function custom_things() {
    	echo '<div class="header-text">custom[at]text.com</div>';
    }

    and then you can style the text using custom CSS in Quick CSS field as following

    .header-text { float: right; }

    Cheers!
    Yigit

    #365734

    Hey yigit, when I updated to the newest version of enfold my secondary logo went away. when i try your method it places the text in the main menu, not in the header. any suggestions?

    #366520

    Hey!

    Try to replace the code with this:

    add_action('ava_main_header','custom_things');
    function custom_things() {
    	echo '<div class="header-text">custom[at]text.com</div>';
    }

    Best regards,
    Ismael

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