juanmiguelfp Posted March 25, 2013 Share Posted March 25, 2013 Tengo un problema he cambiado cosas del theme y ahora cuando le doy a añadir al carrito la imagen no va donde tiene que ir. Necesito alguna pista de como funciona esto para regularlo. Solo con saber por donde anda la función que hace esto, o si es con css, js, cualquier pista ya que estoy intentado encontrarlo y no hay manera gracias. Link to comment Share on other sites More sharing options...
joseantgv Posted March 25, 2013 Share Posted March 25, 2013 modules/blockcart/ajax-cart.js, función add: // Check if the block cart is activated for the animation if (cartBlockOffset != undefined && $picture.size()) { $picture.appendTo('body'); $picture.css({ 'position': 'absolute', 'top': $picture.css('top'), 'left': $picture.css('left') }) .animate({ 'width': $element.attr('width')*0.66, 'height': $element.attr('height')*0.66, 'opacity': 0.2, 'top': cartBlockOffset.top + 30, 'left': cartBlockOffset.left + 15 }, 1000) .fadeOut(100, function() { ajaxCart.updateCartInformation(jsonData, addedFromProductPage); }); } Link to comment Share on other sites More sharing options...
juanmiguelfp Posted March 25, 2013 Author Share Posted March 25, 2013 Muchas gracias joseantgv, voy a probar. Link to comment Share on other sites More sharing options...
Recommended Posts