jquery - Elements not displaying until hovered over -



jquery - Elements not displaying until hovered over -

i'm working on site client , experiencing sort of bug in chrome.

http://timkeaydesign.com/nnc/desktops

if switch "grid" view, refresh page, you'll see how page should display. if switch "list" view "grid" view, of "add basket" buttons disappear... until start hovering around on others, gradually start re-appearing!?

this bug appears nowadays in chrome. i've tested in firefox, safari , ie8 , seems fine in browsers.

i've updated jquery , fixed few javascript errors, hasn't helped.

any ideas?

you need remove position:absolutes , modify way html construction is.

css:

.product-grid .cart { padding: 10px; display:block; } .product-grid .wishlist, .product-grid .compare { bottom: 70px; z-index: 999; }

js (move cart bottom):

html += '<div class="wishlist">' + $(element).find('.wishlist').html() + '</div>'; html += '<div class="compare">' + $(element).find('.compare').html() + '</div>'; html += '<div class="cart">' + $(element).find('.cart').html() + '</div>';

jquery opencart

Comments

Popular posts from this blog

javascript - THREE.js reposition vertices for RingGeometry -

javascript - I need to update the text of a paragraph by inline edit -

assembly - What is the addressing mode for ld, add, and rjmp instructions? -