Hi,
ARe you referring to the custom CSS you have added to your theme options?
If so, I can see a couple of errors that you need to amend:
Wrong:
@media only screen and (max-width: 1024px)
.products[data-columns="3"] .product .cart-overlay .shop-actions {
display:none!important;
}
Correct:
@media only screen and (max-width: 1024px) {
.products[data-columns="3"] .product .cart-overlay .shop-actions {
display:none!important;
}
}
Wrong:
figure.animated-overlay figcaption {
background-color:rgba(0, 0, 0, 0.4)
}
Correct:
figure.animated-overlay figcaption {
background-color: rgba(0, 0, 0, 0.4);
}
If you update those, let us know if you still encounter any issues.
– David.