Hi,
If you open js/functions.js
, locate this:
iconBoxes: function() {
if (isMobileAlt) {
jQuery('.sf-icon-box').on('click', function() {
jQuery(this).addClass('sf-mobile-hover');
});
} else {
jQuery('.sf-icon-box').hover(
function() {
jQuery(this).addClass('sf-hover');
}, function() {
jQuery(this).removeClass('sf-hover');
}
);
}
},
Replace that with this:
iconBoxes: function() {
if (isMobileAlt) {
jQuery('.sf-icon-box').on('click', function() {
jQuery(this).addClass('sf-mobile-hover');
});
} else {
jQuery('.sf-icon-box').hover(
function() {
//jQuery(this).addClass('sf-hover');
}, function() {
//jQuery(this).removeClass('sf-hover');
}
);
}
},
Please note: you must disable the performance options in the Theme Options to output this updated JS.