Tagged: logo mobile
Hi,
how can I use a different logo for the mobile version?
Thank you!
Hey dreamreader,
Thank you for the inquiry.
You can add this code in the functions.php file to assign a different logo on mobile view.
/*Use a different logo on mobile*/
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo) {
if ( wp_is_mobile() ) {
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
}
return $logo;
}
Just replace the URL with your own image.
Best regards,
Ismael
Hi Ismael,
thank you for the answer.
I will try your suggestion.
Thank you!
Regards