Hi, is there a way to add a tagline/slogan next to the main logo at the top of the page?
Thanks,
Lea
Hi,
Edit header.php, find this code
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
Add this code below.
echo "<div class='tagline'>".get_bloginfo ( 'description' )."</div>";
You set the tagline or slogan on Settings > General > Tagline.
You can style the container using the .tagline selector.
Regards,
Ismael
Thanks so much!