Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #486198

    Good afternoon,

    What is the easiest way to hide the logo on all pages including the home page? I have searched and could only find complex instructions on how to hide it on certain pages, etc., but I only need to know how to simply hide the logo everywhere or disable it. Also, is there a way to do this without coding? Thank you!

    #486524

    Hey newuser1!

    I have added following code to Quick CSS field in Enfold theme options under General Styling tab

    .logo img { display: none !important; }

    Please review your website now.

    Regards,
    Yigit

    #486774

    Thank you Yigit!!! It worked, but how do I get the company name (heading text) that says John… to show where the logo used to be in the top left corner on the same line as the Menu?

    Lastly, how do I hide the author name from all blog posts including new ones that are going to be added shortly?

    If you know how to make either of these changes, please do so if possible. Your help is greatly appreciated as I cannot figure out how to finalize either of these. Thank you tremendously again!

    #486859

    Hey!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
        $sub .= "Company Name";
        return $sub;
    }

    and then add following code to Quick CSS

    .text-sep-cat, .blog-author {
        display: none!important;
    }

    Best regards,
    Yigit

    #488944

    Good morning Yigit,

    I tried what you mentioned, but when I go to Appearance > Editor and add the code to Functions.php file it shows the company name in very small black lettering. Do you know how to make the text white and a bit larger so it matches the menu or previous company name lettering?

    The other code worked great to hide the author. Thank you again for your help.

    #489236

    Hey Yigit,

    I have been trying what you mentioned for several days now, but when I go to Appearance > Editor and add the code to Functions.php file it shows the company name in very small black lettering. Do you know how to make the text white and a bit larger so it matches the menu or company name lettering?

    The other code worked great to hide the author. Thank you again for your help.

    #489684

    Hi!

    I added the below css to your quick css section and reinserted Yigit’s code:

    .subtext {
        text-decoration: none !important;
        color: #ffffff !important;
        /*font-size: 24px;*/
    }

    You can remove the “/*”*/” surrounding font-size to adjust the font size to your liking.

    Cheers!
    Dake

    #489768

    Thank you Dake, I did as you instructed right after you sent and it works! I appreciate all of you and your teams help!

    #490134

    Hey!

    You’re welcome, glad we could help :)

    Please let us know if you ever need help in the future.

    Regards,
    Dake

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Easiest Way to Hide Logo on All Pages’ is closed to new replies.