Hi there,
I’ve added at funcions.php this code
add_filter(‘avf_logo_subtext’, ‘kriesi_logo_addition’);
function kriesi_logo_addition($sub) {
$sub .= “My text“;
return $sub;
}
and at Quick CSS this code
.logo img { display: none; }
My text is duplicate on mobile screen.
How can I resolve this problem?
Resolved: .logo img { display: none !important; }
Bye.