add to cart

i would like this button without border and to be able to change the size, color and font

thanks

dawn 15.0.2

Capture d'Γ©cran 2024-08-21 151146.png

Hi @MIMI972 ,

Step 1: Go to Shopify Admin β†’ Online Store ->Theme β†’ Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

Hello @MIMI972
Our team is ready to help you.
Please share your website address and access password (if necessary) so that we can check and assist you.

Hello @MIMI972

You can add code by following these steps

  1. Go to Online Store β†’ Theme β†’ Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.product-form__submit:before, .product-form__submit:after{ box-shadow: unset !important; } button.product-form__submit { font-size: 20px !important; /*adjust according to you*/ color: #f54747 !important; /*change color according to you*/ } _**Was my reply helpful? Click Like to let me know!**_

Was your question answered? Mark it as an Accepted Solution.

thank you but the outline is still there

the solution:

.product-form__submit:before, .product-form__submit:after { box-shadow: unset !important; } button.product-form__submit { font-size: 20px !important; /* Ajustez selon vos besoins */ color: #ffffff !important; /* Texte en blanc */ background-color: #000000 !important; /* Fond en noir */ border: 1px solid transparent !important; /* Bordure transparente */ }