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,
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
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?