davvarts Posted September 13, 2013 Share Posted September 13, 2013 Witam serdecznie! Ten problem spowodował, że musiałem się tutaj zarejestrować A więc do rzeczy... ustawilem style dla koszyka (border-radius:20px) ale gdy go nacisne to niestety wracaja standardowe style koszyka ktore sa ukryte gdzies w htmlu tutaj daje kod: <a href="http://localhost/prestashop/zamowienie" title="Pokaż mój koszyk" rel="nofollow" style="border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;">Koszyk: <span class="ajax_cart_quantity">2</span> <span class="ajax_cart_product_txt hidden">produkt</span> <span class="ajax_cart_product_txt_s">produkty</span> <span class="ajax_cart_total"> 378,47 zł </span> <span class="ajax_cart_no_product hidden">(pusty)</span> </a> wiem ze jesli usune te style to wszyastko bedzie fajnie dzialalo... tylko najwiekszym problemem jest ze nie moze tego znalesc... prosze o pomoc gdyz to bardzo pilne Pozdrawiam! Link to comment Share on other sites More sharing options...
vekia Posted September 13, 2013 Share Posted September 13, 2013 za ten stan rzeczy odpowiedzialny jest skrypt js koszyka, dokładnie ten plik: modules/blockcart/ajax-cart.js $("#shopping_cart a:first").hover( function() { $(this).css('border-radius', '3px 3px 0px 0px'); if (ajaxCart.nb_total_products > 0 || cart_qty > 0) $("#cart_block").stop(true, true).slideDown(450); }, function() { $('#shopping_cart a').css('border-radius', '3px'); setTimeout(function() { if (!shopping_cart.isHoveringOver() && !cart_block.isHoveringOver()) $("#cart_block").stop(true, true).slideUp(450); }, 200); } ); $("#cart_block").hover( function() { $('#shopping_cart a').css('border-radius', '3px 3px 0px 0px'); }, function() { $('#shopping_cart a').css('border-radius', '3px'); setTimeout(function() { if (!shopping_cart.isHoveringOver()) $("#cart_block").stop(true, true).slideUp(450); }, 200); } ); Link to comment Share on other sites More sharing options...
davvarts Posted September 13, 2013 Author Share Posted September 13, 2013 Super działa elegancko ! Faktycznie nie pomyślałem, że dodali style przez jave Dzieki serdeczne vekia ! Mysle, ze jeszcze tu zajrze jak bede miec problem Pozdrawiam Link to comment Share on other sites More sharing options...
vekia Posted September 13, 2013 Share Posted September 13, 2013 zapraszam częściej nawet jak problemów nie będzie! pozdrawiam Link to comment Share on other sites More sharing options...
Recommended Posts