Plugin Author
taisho
(@taisho)
Hello,
is this issue still present? The initial look is fine for me. There are some CSS issues when interacting with the buttons. A couple of rules are not applied (crossed out) because !important rules have a priority over them. Most probably they come from the theme. The simplest and non-elegant solution is to brute-force overwrite these rules, using higher specificity !important rules in your child theme or extra CSS of the theme.
Something like this will give these ignored rules the highest priority:
.qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
padding: 0!important;
width: 35px!important;
max-width: initial!important;
border-radius: 0!important;
}
Best regards,
Ryszard
-
This reply was modified 5 years, 6 months ago by
taisho.
Thread Starter
bec82
(@bec82)
Thanks for the response. It turns out the WooCommerce Wishlist plugin was causing a conflict with your plugin. I have since deactivated it and am waiting for the other plugin author to resolve the issue.
Thanks for the code. Ill keep it in my back pocket in case I need it later!