Tagged: header, image, logo, site description, site title
How can I make both the logo image and site title/description display?
I couldnt figure it out so I added a widget to the header and tried to style it but there are issues when resizing. I need something that will work universally.
I dont mind using a separate logo for mobile devices if need be but ideally would prefer a image & text solution for all resolutions.
Hey dannish1!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_logo_subtext', 'kriesi_logo_addition');
function kriesi_logo_addition($sub) {
$sub .= bloginfo('name');
return $sub;
}
You may need to adjust its position using custom CSS, if you need help, let us know
Cheers!
Yigit