can anyone teach me how to remove that button on that add to cart button?
@Sheeks - can you share this product page link? it will need css
If it’s part of theme see if there is anyway to remove it with there settings
but if that’s not the case fix that using HTML/CSS I don’t know how much HTML/CSS you know but if you know that’s very simple
Inspect your code first you can do open that with
cmd+swift+I
or just right click there is inspect option at the bottom
it opens like this
now go and inspect that icon “better watch some video on how to do that” search for inspect in browser
once you know that copy that part of code and give it Chatgpt
and ask how to remove this using html/css/js
paste that code in your theme settings and it will remove that
if you share the page I’ll fix that.
Why do you want to remove it? How will people proceed to checkout?
Paste this code at the bottom of ‘base.css’ or ‘theme.css’ or ‘style.css’
.button.atc-btn {
display: none;
}
use this
.button.atc-btn .button-arrow {
display: none;
}
.button.atc-btn:hover {
background-color: #e61f93;
color: #ffffff;
}
Sorry I misunderstood your question. Try this code
.button{
border-color: #e61f93 !important;
color: #e61f93 !important;
}
.button-arrow{
display: none;
}
Gosh! It worked!
Thanks!
Good to help @Sheeks seems like you have lot issue/question on how to change your theme
I highly recommend you read my below post and try to learn it using YT
and ask chatGPT hey this is my html write a CSS to do X
that’s a super power


