How can I eliminate the 'add to cart' button from my product page?

https://breathblastermy.myshopify.com/products/breath-blaster-smelling-salt

Hi I need help :waving_hand:t2:

How so i remove add to cart button. (Can refer image below).

password: newtse

1 Like

Hello @BreathBlaster

Please use below code on assets → base.css at the bottom to hide Button

button.product-form__submit.button{
display:none !important;
}

1 Like

Hi @BreathBlaster ,

Just add the code below inside the base.css file under the Asset folder.

.product-form__submit {
display: none !important
}