missing X button to remove product from minicart
-
missing X button to remove product from minicart, i want it there…
Attachments:
You must be
logged in to view attached files.
Hello,
Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:
.woocommerce-mini-cart .remove {
background-color: #010101;
}
.cart-widget-side .woocommerce-mini-cart .remove {
color: white;
}
Best Regards.
working but it is just black dot, i want x to be there
Attachments:
You must be
logged in to view attached files.
Hello,
Remove the previous code and add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS.
.woocommerce-mini-cart .remove {
background-color: #000000 !important;
}
.cart-widget-side .woocommerce-mini-cart .remove {
color: #ffffff !important;
font-size: 30px !important;
}
Best Regards