-
AuthorPosts
-
January 31, 2025 at 11:54 am #1476070
Dear Enfold- Support!
First of all many thanks for your outstanding work and coding abilities, which you present here. With the help of the Forum I could fix most of the problems I encountered building my site.
However, there are still a few very annoying errors which I wasn’t able to fix, I hope you can help me out.
The site address is [in the private content area]
1) I don’t want the image caption of the header logo to show up on mouseover – i found no option to hide the caption in the enfold header settings
2) The blue footer area (with the Copyright and Impressum link) ist way too large, I would like to have it approx. double the size as the dark blue subfooter area. Especially on mobile view, this area is huge, which does look very strange.
3) Although I set a favicon which is normally displayed in the Chrome Tab on PC and Mobile, on Ipad Chrome browser there’s still the normal WordPress Icon – how can I fix this?I think thats all for now!
Again thank you for your great help!
January 31, 2025 at 12:00 pm #1476071Moderator Login in Private Content
- This reply was modified 1 day, 23 hours ago by josefkaiblinger.
January 31, 2025 at 4:44 pm #1476093Hi,
To remove the image title from showing on the logo on mouse-over, Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_script() { ?> <script> (function($){ $('img').hover(function(e){ $(this).attr('data-title', $(this).attr('title')); $(this).removeAttr('title'); }, function(e){ $(this).attr('title', $(this).attr('data-title')); }); $('.av-masonry-image-container').hover(function(e){ $(this).attr('data-title', $(this).attr('title')); $(this).removeAttr('title'); }, function(e){ $(this).attr('title', $(this).attr('data-title')); }); $('a').hover(function(e){ $(this).attr('data-title', $(this).attr('title')); $(this).removeAttr('title'); }, function(e){ $(this).attr('title', $(this).attr('data-title')); }); })(jQuery); </script> <?php } add_action( 'wp_footer', 'custom_script', 99 );
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
MikeJanuary 31, 2025 at 5:15 pm #1476097Hello Mike,
Many thanks for the code provided. I just implemented it and it works great!
Do you have a solution for point 2) the large footer area?
This would be important for me.I could gladly live with 3) the WP Icon on Ipad unanswered.
Thanks again,
JosefJanuary 31, 2025 at 5:31 pm #1476098Hi,
The widgets in the footer dictate how larger the footer will be, to make smaller you can remove the widget margin with this css:#footer .widget { margin: 0; }
as for the favicon on ipad try uploading your real “favicon.ico” (not png or jpg) to the domain root
Best regards,
MikeJanuary 31, 2025 at 10:27 pm #1476121Great, that did it mostly!
Thank you, topic closed.February 1, 2025 at 11:29 am #1476138Hi,
Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard -
AuthorPosts
- The topic ‘Things I couldn’t fix using the forum search or documentation’ is closed to new replies.