-
AuthorPosts
-
August 11, 2015 at 9:42 pm #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!
August 12, 2015 at 1:35 pm #486524Hey 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,
YigitAugust 12, 2015 at 8:34 pm #486774Thank 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!
August 13, 2015 at 12:30 am #486859Hey!
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,
YigitAugust 17, 2015 at 3:10 pm #488944Good 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.
August 18, 2015 at 4:16 am #489236Hey 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.
August 18, 2015 at 7:45 pm #489684Hi!
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!
DakeAugust 19, 2015 at 12:08 am #489768Thank you Dake, I did as you instructed right after you sent and it works! I appreciate all of you and your teams help!
August 19, 2015 at 3:30 pm #490134Hey!
You’re welcome, glad we could help :)
Please let us know if you ever need help in the future.
Regards,
Dake -
AuthorPosts
- The topic ‘Easiest Way to Hide Logo on All Pages’ is closed to new replies.