Currently I’m having to make a graphic that has the logo and the tag line so that it views how I would like it too.
However it would better if the tag line actually displayed.
Please advise,
Kelly
Hey jamescccnw!
I’m not entirely sure I understand what you are trying to do, could you please provide us with a screenshot highlighting your intentions and a link to the site in question?
Cheers!
Rikard
Hi!
add this to your functions.php:
add_action('ava_after_main_menu','logo_text');
function logo_text() {
echo "<div class='logo-text'>Collaborative Community</br> for Boomers & Beyonders</div>";
}
You would need to style the CSS for it. Use something like this:
.logo-text {
position: relative;
top: -120px;
left: 80%;
}
adjust and style as needed.
Get back to us when you implemented the code and we can see it on your website, in case you need more help with CSS styling.
Regards,
Andy