Tagged: image
-
AuthorPosts
-
May 25, 2023 at 5:25 pm #1408563
Hi
If I hover over images on my website a pop up with the name of the image file appears. How can I make sure that no pup up is displayed on hover over.
Many thanks and regards
RetoMay 26, 2023 at 3:06 am #1408607Hi Challenge,
Please try to add this in your child themes functions.php file:
function temporary_removal_title_tags(){ ?> <script> window.onload = function() { var links = document.querySelectorAll('a, img, *[title]'); for (var i = 0; i < links.length; i++) { var link = links[i]; link.onmouseover = function() { this.setAttribute("data-tooltip", this.title); this.title = ""; }; link.onmouseout = function() { this.title = this.getAttribute("data-tooltip"); }; link.onmousedown = function() { this.title = this.getAttribute("data-tooltip"); }; } }; </script> <?php } add_action('wp_footer', 'temporary_removal_title_tags');
If you don’t have a child theme yet, then go to https://kriesi.at/documentation/enfold/child-theme/ and download the child theme there (instructions on how to use it is also there)
Hope it helps.Best regards,
Nikko
- This reply was modified 1 year, 6 months ago by Nikko.
May 30, 2023 at 2:15 pm #1409021Hi Nikko, thanks again! I have added a child theme and this function and it works perfectly.
One problem seems to have occurred since your last change on our website (when you solved several issues: https://kriesi.at/support/topic/header-logo-and-menu-issues/) or since I introduced the enfold child theme as you described above:
1. The font color of the menu items in the header changes from white to gray when a user starts scrolling down. Also on hover over/mouse over there is no action (font should change from white to gray).As I stopped the maintenance mode, I was able to test the behavior on my mobile phone and I have found a new problem with our site on mobile screens. The header does not display correctly:
2. On mobile screen: Header is not sticky and disappears when scrolling down. Should be sticky as on normal screen.
3. Background color is not correct. Should be gradient transparent as specified in Quick CSS section.
4. Logo is too big. How can this be adapted on mobile screen?Best regards, Reto
May 31, 2023 at 9:21 am #1409098Hi Reto,
I moved the code to WPCode since it’s easier to manage those custom codes there.
1. The font color of the menu items in the header changes from white to gray when a user starts scrolling down. Also on hover over/mouse over there is no action (font should change from white to gray).
It’s fixed, I noticed it was partially set in in Advanced Styling and Header > Transparency Options > Transparency Menu Color On Hover.2. On mobile screen: Header is not sticky and disappears when scrolling down. Should be sticky as on normal screen.
I have added this CSS code in Quick CSS:@media only screen and (max-width:767px) { .responsive #top #wrap_all #header { position: fixed; } }
3. Background color is not correct. Should be gradient transparent as specified in Quick CSS section.
I have added this in Quick CSS:@media only screen and (max-width:767px) { .html_mobile_menu_tablet #top #wrap_all .av_header_transparency { background-color: transparent; } .html_mobile_menu_tablet #top #wrap_all .av_header_transparency .header_bg { background-image: linear-gradient(rgba(20,21,23,1), rgba(20,21,23,0)100%); background-color: transparent; } }
4. Logo is too big. How can this be adapted on mobile screen?
I have add this CSS code, please adjust the value as you see fit (default was 80px)@media only screen and (max-width:767px) { .responsive .logo img { max-height: 65px; } } Please review your site. Best regards, Nikko
May 31, 2023 at 12:18 pm #1409134Hi Nikko
Thank you very much for your changes! They work as we have hoped for.
You mentioned that you moved the code to WP Code. You refer to the “Change Logo Link” snippet, correct?On the mobile burger menu the menu items are displayed very small. Do you know how their font size can be changed?
Best regards
RetoJune 1, 2023 at 12:21 am #1409207Hi Reto,
No, that code was already in WPCode which I mentioned in the other thread.
This is the code I moved:function temporary_removal_title_tags(){ ?> <script> window.onload = function() { var links = document.querySelectorAll('a, img, *[title]'); for (var i = 0; i < links.length; i++) { var link = links[i]; link.onmouseover = function() { this.setAttribute("data-tooltip", this.title); this.title = ""; }; link.onmouseout = function() { this.title = this.getAttribute("data-tooltip"); }; link.onmousedown = function() { this.title = this.getAttribute("data-tooltip"); }; } }; </script> <?php } add_action('wp_footer', 'temporary_removal_title_tags');
As for the mobile menu items, the font size depends on what is set as the default font size of the site, if that option is untouched then default is 13px which is what is showing on your site, you can change it by adding this CSS code in Enfold > General Styling > Quick CSS:
#top #av-burger-menu-ul a .avia-menu-text { font-size: 18px; }
Just adjust the value as you see fit.
Best regards,
NikkoJune 1, 2023 at 7:00 pm #1409300Hi Nikko
Thanky you very much for your solution. I have increased the font size to 20 and it works fine.
Best Regards,
RetoJune 2, 2023 at 2:11 am #1409342Hi Reto,
I’m glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
Nikko -
AuthorPosts
- The topic ‘pop up text on mouse over image’ is closed to new replies.