-
AuthorPosts
-
February 20, 2019 at 1:35 pm #1069449
i would like to turn off the tooltip animation for the icon-grid element. I only want the icons to appear in the grid with the links. No amination or tooltip.
any ideas?
thank you in advance.February 20, 2019 at 2:01 pm #1069462I can’t replicate any tooltips when testing this but I see the icon flipping on hover.
Add this to stop the icon flipping
.avia-icongrid-flipbox li:hover .avia-icongrid-front, .avia-icongrid-flipbox li.av-flip .avia-icongrid-front{ -webkit-transform: rotateY(0deg); transform: rotateY(0deg); }Would it be easier to use the icon Box element in columns?
Not sure if this helps or not. Can you provide a link?
February 20, 2019 at 2:09 pm #1069463it worked. In mobile version is appearing to get underline on mouse over. can i stop that?
February 20, 2019 at 2:20 pm #1069465Can you provide a link?
Or try:
.SELECTORNAME:hover {text-decoration:none;}February 20, 2019 at 6:45 pm #1069616Hi KyriK,
Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
VictoriaFebruary 20, 2019 at 7:11 pm #1069639here it is
February 21, 2019 at 6:37 pm #1070053any ideas?
February 21, 2019 at 6:39 pm #1070054I can’t help as you have made the link private and I therefore can’t see it.
February 22, 2019 at 6:09 pm #1070433i can email you the details
February 22, 2019 at 6:11 pm #1070436Cool.
Send them via my website contact form: https://digitalessence.net/contact/
February 22, 2019 at 6:14 pm #1070441have you also looked at this thread: https://kriesi.at/support/topic/disable-flip-on-icon-grid/
February 22, 2019 at 9:18 pm #1070479Hi,
I’ve logged in but can’t see which page has the icon grid on it.
February 24, 2019 at 11:35 am #1070891Hi KyriK,
Best regards,
VictoriaFebruary 25, 2019 at 11:33 am #1071235Hi,
I’ve had a look. Are you meaning its the standard browser tooltip you want to hide. If so, try removing the title from the images,
March 1, 2019 at 6:27 am #1072906Hi,
Sorry for the late reply, I have removed the title or “tooltip” from your icon grid element with this javascript in your functions.phpfunction remove_icongrid_title(){ ?> <script> (function($) { $(document).ready(function(){ $('#top .avia-icongrid a').each(function() { $(this).removeAttr('title'); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'remove_icongrid_title');Please clear your browser cache and check.
Best regards,
Mike -
AuthorPosts
- You must be logged in to reply to this topic.
