http://kriesi.at/documentation/enfold/change-logo-on-mobile/
Is it possible that this applies only for smartphones, max-width: 767px?
Hey Roine!
Using that code it is not possible as it detects only as mobile device.
Please add following code to functions.php file instead
add_filter('avf_logo_subtext', 'kriesi_logo_addition');
function kriesi_logo_addition($sub) {
$sub .= "Company Name";
return $sub;
}
Instead of “Company Name”, please use HTML IMG tag to upload your image and then add following code to Quick CSS
@media only screen and (max-width: 767px) {
.logo > a > img { display: none !important; }}
Cheers!
Yigit
SUPERTACK! (Big Thank You in Swedish :-)