 
	
		
		
		
		
			
Hi, is there a way to use just some title text (same font and size as the menu text) rather than a logo image to display in place of the logo image on the left side of the header?
Thanks
Hi Richard!
Thank you for using Enfold.
Please use this on functions.php:
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 = "THIS IS MY LOGO";
	$subtext  = "THIS IS THE SUBTEXT";
	$subtext  = "<span class='subtext'>$subtext</span>";
    $logo     = "<h1 class='logo bg-logo'><a href='".$link."'>".$logotext."$subtext</a></h1>";
	 
	return $logo;
}Change the subtext and the logotext.
Regards,
Ismael
Excellent, thanks Ismael
