View cart side bar product count and +/- not visible
-
Hi Team,
After clicking the cart button, a side bar is opening and in that product count and +/- symbols are not visible. Only when I hover on them its visible. I have added a screen record video of the same. Please check and give me the solution to solve this. Please check the video link attached.
https://drive.google.com/file/d/1UIzzribiurUgHalOw-8p6L9xq2PXNfLh/view?usp=sharing
Thanks.
Helo,
Navigate to Theme Settings > Styles and Colors > Forms > Change the color of the buttons and input fields and check how it works: https://ibb.co/nsW4Df4S
If the issue remains, share the site url so I will further check on your site and give you a possible solution.
Best Regards,
Hi,
The issue hasnt fixed. Here is the site URL: http://www.partysquare.in
Please check and give me the possible solution to fix this.
Thanks.
Hello,
I have checked your website and the issue is happening because the mini cart (shopping cart sidebar) has a black background, while the quantity input text and +/- buttons are also using a dark color. You can change the color from the theme settings globally. If you want to change it only in the shopping cart widget, use custom css code.
Try to add the following custom CSS in Theme settings > Custom CSS and check how it works:
.woocommerce-mini-cart .quantity input[type="number"],
.woocommerce-mini-cart .quantity input[type="text"] {
color: #ffffff !important;
}
.woocommerce-mini-cart .quantity input[type="button"] {
color: #ffffff !important;
}
Best Regards,