New Landing › How can we help? › Cardinal › Badgets "Sale" and "New" hidden behind cart, wishlist and quickview icons
Add this to your custom css:
@media only screen and (min-width: 1200px) { .woocommerce span.onsale, .woocommerce .wc-new-badge, .woocommerce .out-of-stock-badge, .woocommerce .free-badge { display: none; } }
– Kyle
I am afraid it is no change…
Sorry, it should be:
@media only screen and (max-width: 768px) { .woocommerce span.onsale, .woocommerce .wc-new-badge, .woocommerce .out-of-stock-badge, .woocommerce .free-badge { display: none; } }
Hm, still not working….
Try adding !important
Still not working….. and hiding them is only a workaround for the badges (badgets?) using the same screen area as the cart, wishlist and quickview icons, I did not want to hide them in the first place ๐
But still not working.
Ok try this instead:
.woocommerce span.onsale, .woocommerce .wc-new-badge, .woocommerce .out-of-stock-badge, .woocommerce .free-badge { left: -31px!important; right: auto; transform: rotate(-45deg); }
Hi,
Try this one to move the quickview icons to the left.
.product-type-standard .product .cart-overlay { left: 0!important; right: inherit!important; }
-Rui
Thanks for the easy solution ๐
Thanks Rui
You must be logged in and have valid license to reply to this topic.