This topic has 4 replies, 2 voices, and was last updated 6 years, 2 months ago ago by Rose Tyler
Hi I would like to remove the tick or style it??
I am talking about the tick that is displayed after a user click on add to cart. I believe this is shown wit the ajax add to cart functionality.
See the screenshot attached.
Thanks
Harry
Hello,
Theme Options > Single Product Page > Ajax “Add To Cart” > Off.
Regards
Hi,
I dont want to disable the ajax functionality just want to either hide the tick by styling it or style it with a transparent background etc…
Thanks
Hello,
In this case, please add this code in Theme Options > Custom css or in style.css file of your child theme:
.progress-button.state-success .content::after {
background-color: transparent;
height: 22px;
vertical-align: middle;
transform: translateY(-4px);
}
.progress-button.state-success .content {
color: transparent;
}
.progress-button[data-style="shrink"][data-horizontal].state-loading {
border-radius: 0;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up