Hello,
is it possible to remove the Logo and have just a text only site title?
thanks
Hi,
Edit header.php, find this code:
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
Replace it with:
echo '<h1 class="logo">';
echo bloginfo('name');
echo '</h1>';
Add this on your custom.css or Quick CSS:
.logo {
top: 40px;
}
Regards,
Ismael
thank you