Hey Gareth,
It looks like your snippet is using curly single quotes instead of normal single quotes. I’m wondering if this is triggering an error.
Try this instead:
jQuery('.sbi_item').each(function() {
jQuery(this).find('a').unbind('mouseenter').unbind('mouseleave');
});
Otherwise, feel free to send me a link to your page and I can take a look!
– Craig
Hey Craig,
This fixed it, thanks very much for your help!
Cheers
Gareth
No problem Gareth!
Have a great rest of your week!
Hi, no fix for me but i do that in custom css and now is fixed : –>(15, 15, 15, 0);
.entry-content a, .entry-summary a, .widget a, .site-footer .widget-area a, .posts-navigation a, .widget_authors a strong {
-webkit-box-shadow: inset 0 -1px 0 rgba(15, 15, 15, 0);
box-shadow: inset 0 -1px 0 rgba(15, 15, 15, 0);
-webkit-transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
transition: color 80ms ease-in, box-shadow 130ms ease-in-out;
transition: color 80ms ease-in, box-shadow 130ms ease-in-out, -webkit-box-shadow 130ms ease-in-out;
}
.entry-content a:hover, .entry-summary a:hover, .widget a:hover, .site-footer .widget-area a:hover, .posts-navigation a:hover, .widget_authors a strong {
-webkit-box-shadow: inset 0 -1px 0 rgba(15, 15, 15, 0);
box-shadow: inset 0 -1px 0 rgba(15, 15, 15, 0);
-webkit-transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
transition: color 80ms ease-in, box-shadow 130ms ease-in-out;
transition: color 80ms ease-in, box-shadow 130ms ease-in-out, -webkit-box-shadow 130ms ease-in-out;
}