Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #870023

    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

    #870024

    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

    #870034

    I’m sorry to say it didn’t work.

    #870043

    Hi,
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    #870068
    This reply has been marked as private.
    #870081

    Hi,
    Please also include the url to your site.

    Best regards,
    Mike

    #870157
    This reply has been marked as private.
    #870231

    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

    #876622

    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

    #876890

    Hi,
    I removed the code from your functions.php, Please clear you cache and check.

    Best regards,
    Mike

    #877118

    Thank you Mike.
    Best regards

    #877272

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Site name instead of logo’ is closed to new replies.