Hello!
First, I LOVE this theme.
http://gms2.brighttribe.com/us/
As you can see, I have the logo on the left and the menu on the bottom. But I want to be able to add a phone number or slogan to the right side of the header. I’m not sure how to do that. Any help would be appreciated!
Hey Brian!
Thank you for using the theme.
Please add this on functions.php:
add_action('ava_main_header', 'ava_add_slogan');
function ava_add_slogan() {
echo "<div class='header-slogan'>SLOGAN OR CONTENT HERE</div>";
}
Replace the content with your phone number etc. Add this on Quick CSS or custom.css to adjust the position of the new container:
.header-slogan {
position: absolute;
right: 100px;
top: 20px;
}
Cheers!
Ismael