Jump to content

[SOLVED] Cart says empt


Recommended Posts

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;
}

 

5dp2.jpg

Edited by Enrique Gómez (see edit history)
  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...