Hi, i added a text logo.
While mouse-over-text is shown “logo”.
How can i change the mouse-over-text?
kind regards
Jak
Hey Jak73,
You can change that if you edit the title of the image in the WordPress gallery.
Best regards,
Rikard
Hi Rikard,
which image you mean? It is a text logo.
Kind regards
Jak
Hi,
I’m not sure exactly how you implemented that, did you try following this? https://kriesi.at/documentation/enfold/logo/#text-logo-with-subtext
Best regards,
Rikard
you can try in child-theme functions.php:
function custom_avf_avia_logo_link_title( $link_title ){
return 'title="Homepage"';
return $link_title;
}
add_filter( 'avf_avia_logo_link_title', 'custom_avf_avia_logo_link_title', 10, 1 );