- This topic has 1 reply, 2 voices, and was last updated 9 years, 7 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 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 › Coupon Code Button – just a black outline is showing up
Tagged: button not showing, coupon
When I add a product to my shopping cart, the coupon code box that shows up just has a black outline for the button to enter the coupon code.
How do I get the button to show up? I am not using a custom button image for this coupon code box.
[http://daretobeyoung.com/store/]
Thanks for the help
Its coming from the CSS of your theme (or maybe you added some custom CSS). It is globally applying some CSS to a button that it shouldn’t. Look at your “search” button which has that same behavior. So as soon as you fix that “Search” button the other one will be fine also.
I am talking about the following CSS code in your “style.css” file.
input[type="submit"] {
padding: 0 !important;
background-image: none !important;
}
That bit is just bad coding because it is saying, do not allow any padding or background image to any of the buttons on this site.