theme Posted February 28, 2014 Share Posted February 28, 2014 How change picture on hover in 1.6 (home page - Product tabs featured/new/popular)? 1 Link to comment Share on other sites More sharing options...
usercm Posted May 9, 2014 Share Posted May 9, 2014 did u get answer to this? i am looking to create something like dis - Magic Zoom Plus™ for Prestashop http://addons.prestashop.com/demo/FO972.html Link to comment Share on other sites More sharing options...
falkor Posted May 9, 2014 Share Posted May 9, 2014 (edited) There are two ways to achieve this resoult (maybe more but I don't know them):1) CSS versionadd to template 2nd image (this one which you want to appear on hover) and hide him (display: none), after this use .hovered class or :hover pseudo-class to display: block propper image and hide first one.2) jQuery versionusehttp://api.jquery.com/hover/http://api.jquery.com/attr/something like this:$('[css li selector]').hover(function(){ $('[css image selector]').attr('src', '[link to new image]'); },{ $('[css image selector]').attr('src', '[link to old image]'); }); best way to get only hovered image selector will be $(this).find('img [you can add classes like in css here]').... I've only described the ways to achieve this, it's not a tutorial Edited May 9, 2014 by falkor (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts