Blocco Manufacturer
Posizione CSS: /modules/manufactuterslider/manufactuterslider.css
Posizione JS: /modules/manufactuterslider/manufactuterslider.js
Serve per allineare più o meno in basso le icone più piccole
$(document).ready(function(){
$("#manufacturers_logo_slider li a").hover(
function () {
$(this).stop().animate({opacity:1});
},
function () {
$(this).stop().animate({opacity:1});
}
);
$(".logo_manufacturer").load(function() {
console.log($(this).attr("title") + ' ' +$(this).height());
var height = $(this).height();
if (height < 70){
$(this).css("margin-top","35px");
}
if (height === 65 || height === 64){
$(this).css("margin-top","23px");
}
});
});