Hi Ismael!
thank you, that works perfectly, but another problem is occuring: the active menu element / current-menu-item (black underlined) doesn’t match to the section position (you have to scroll a bit down to switch it)… Is there a solution for that, too?
Best regards,
Jakob
Hi Ismael,
do you mean the av-logo-container ? Isn’t it still there?
To get text instead of a logo image, I changed the functions.php, though.
add_filter('avf_logo_final_output', 'avf_text_logo_final_output');
function avf_text_logo_final_output($logo) {
$link = apply_filters('avf_logo_link', home_url('/'));
$logotext = "Jail Bird";
$logo = "<h1 class='logo bg-logo'><a href='".$link."'>".$logotext."</a></h1>";
return $logo;
}
Regards,
Jakob
Yes
Done! :)