- This topic has 2 replies, 2 voices, and was last updated 8 years ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Troubleshooting › CSS to show quantity and remove item shopping cart icons
Tagged: css, css tweaks, quantity field
Hi,
I’m having trouble with my checkout page where the “remove from cart” and the “empty cart” icons are missing and the quantity in the quantity input box are not showing.
I thought it was a conflict with the theme css, and in the past I’ve used this:
.shopping_cart input, .eStore_cart_fancy1 input, .eStore_cart_fancy2 input {
width: auto !important;
height: auto !important;
}
But adding that did not help this time. Any thing else I can look at?
Here is our test product page:
[http://joelsmall.com/test-book-purchase/]
WP eStore – Version 7.4.1
WP Version 4.6.1
Thanks!
~Marta
This theme is having some issue with CSS padding for the the cart input.
Try adding the following custom CSS which should help:
.shopping_cart input, .eStore_cart_fancy1 input, .eStore_cart_fancy2 input {
padding: 5px;
}
Thanks! Had to bump it up to 10px to get the quantity to show.
Appreciate your help.