bitmess Posted September 15, 2013 Share Posted September 15, 2013 (edited) When an item is added to the cart. the cart says cart 1 product (empty). How can I fix this? http://kakkysonline.com Thanks, bitmess Edited September 15, 2013 by bitmess (see edit history) Link to comment Share on other sites More sharing options...
Enrique Gómez Posted September 15, 2013 Share Posted September 15, 2013 (edited) Probably because minifying css in the performance tab the css order has become altered. You can search for .hidden { display: none; } that probably is in global.css and you can try to search for the css who has #shopping_cart .ajax_cart_no_product { display: inline; } and add the .hidden css rule after that. Or you can simply add !important to the display:none .hidden rule .hidden { display: none !important; } Edited September 15, 2013 by Enrique Gómez (see edit history) 1 Link to comment Share on other sites More sharing options...
bitmess Posted September 15, 2013 Author Share Posted September 15, 2013 That appears to have fixed it. Thank You Enrique Gómez. Link to comment Share on other sites More sharing options...
Recommended Posts