can anyone teach me how to remove that button on that add to cart button?
Topic summary
Goal: remove the small icon/arrow shown on the “Add to cart” button on a product page.
Context and steps:
- OP shared the product URL after initial requests and was advised to try theme settings or use CSS after inspecting the element via the browser’s dev tools. One participant questioned the reason for removing the icon.
- First CSS suggestion hid the entire add-to-cart button (selector targeted the whole .button.atc-btn), which was not desired.
Solution implemented:
- Revised approach targeted only the icon element: hide the .button-arrow while keeping the button visible.
- Additional styling set the button’s border and text color to #e61f93 to match the theme.
Outcome:
- OP confirmed the revised CSS worked and the unwanted icon was removed without affecting the Add to Cart button’s functionality.
- Guidance was given to learn basic HTML/CSS via tutorials and use dev tools + ChatGPT for similar theme tweaks.
Status: resolved. Screenshots were shared but not essential to the fix.
@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


