system
October 24, 2023, 7:54am
1
Hello there ,
Is there any way to style add to cart and checkout button in the same way .
I want the add to cart and checkout have the same width and height as the quantity button . Also I want to remove the cart icon from the button . Can anyone please assist me with that .
Thank You!!!
Moeed
October 24, 2023, 8:12am
2
Hey @Anonymous
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
1 Like
Hi @Anonymous
You can try to add this code at the bottom of your base.css file
.product__add__cart__button .product-form__submit {
border: 1px solid #000 !important; width: 152px;
}
.product__add__cart__button .product-form__submit svg { display: none !important; }
1 Like