- This topic has 1 reply, 1 voice, and was last updated 8 years, 5 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 – Border on add to cart button
I’m using a cutom button for add to cart. It’s a png file. When displayed, it shows a border and the area that should be clear is slightly grey. I added the following code to wp_eStore_custom_style.css. I got the code from the forum.
input.eStore_button eStore_add_to_cart_button{
border: none;
margin-top: 10px
}
.eStore_button_object input{
background:none;
border-color: none;
border-style: none;
}
It had no effect. The url for the page is [http://www.petlossgriefcare.com/products-and-services/]
I’m using the theme Thesis 1.8.6
Any help would be greatly appreciated. Thank you.
Just fixed the problem. I changed the css code to this.
.format_text .eStore_add_to_cart_button {
border-width: 0;
}
.eStore_button_object input{
background:none;
border-color: none;
border-style: none;
}
It now works perfectly.