Hi, I’ve read all the previous posts about this topic, but none worked. How can I have the site name instead of the logo? I’ve already deleted the enfold logo, I’m not using a child theme. Thank you
Hey Massimo,
Please remove your logo in two places:
Enfold Theme Options > Header > Transparency Logo
Enfold Theme Options > Frontpage Settings > Logo
Add this to your functions.php
add_filter('avf_logo_subtext', 'kriesi_logo_addition');
function kriesi_logo_addition($sub) {
$sub .= get_bloginfo('name');
return $sub;
}
then add this to your quick css:
.logo > a > img { display: none !important; }
and clear your cache
Best regards,
Mike
I’m sorry to say it didn’t work.
Hi,
Can you please include a admin login in the private content area so we can take a closer look.
Best regards,
Mike
Hi,
I didn’t find the custom function in your functions.php so I added it and added this code to make the text white so you could see it:
.subtext {color: #fff !important; }
Please clear your cache and check.
Best regards,
Mike
It worked, thank you. But because the text was too small I replaced it with a png. Now, can you please remove the code you added? I can’t find it. Thanks a lot
Hi,
I removed the code from your functions.php, Please clear you cache and check.
Best regards,
Mike
Thank you Mike.
Best regards