I was reading the comments on themeforest on how to change the hover color of the nectar buttons and came across an answer from you guys that said to delete these lines in the js file. So I did this, and the whole slider dissapeared. I placed the code back into the file and it still won't appear?
"$('.swiper-slide').each(function(){
$(this).find('.solid_color').each(function(){
var $currentColor = $(this).find('a').css('background-color');
var $hoverColor = shadeColor($currentColor, -16);
$(this).find('a').hover(function(){
$(this).attr('style','background-color:'+$hoverColor+'!important;');
},function(){
$(this).attr('style','');
});
});
});"
I was reading the comments on themeforest on how to change the hover color of the nectar buttons and came across an answer from you guys that said to delete these lines in the js file. So I did this, and the whole slider dissapeared. I placed the code back into the file and it still won't appear?
"$('.swiper-slide').each(function(){ $(this).find('.solid_color').each(function(){ var $currentColor = $(this).find('a').css('background-color'); var $hoverColor = shadeColor($currentColor, -16); $(this).find('a').hover(function(){ $(this).attr('style','background-color:'+$hoverColor+'!important;'); },function(){ $(this).attr('style',''); }); }); });"