Nattlig
1
We want to change the checkout button (the “legg i handlekurv”) button to this green color: #76c54d
Here is the link to the product website: https://nattlig.no/products/nattligputen
Can someone give me some code and guide me on how to implement it? thanks!
@Nattlig , Hello! Please follow these steps to add this CSS code:
- Go to your Online Store
- Click on “Themes”
- Select “Edit code”
- Open your CSS file. If you have a custom CSS file, open that instead.
- If you can’t find your custom CSS file, open base.css" OR “theme.css”.
- Add the following code at the end of the file.
product-form.product-form .product-form__buttons .button {
background: #76c54d;
}
Feel free to reach out if you have any questions or need assistance.
Best Regards,
DWS.
Hi @Nattlig ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
Here is result:
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 
Nattlig
5
Very nice! Can you give me the full code which also removes or changes the button outline color to the same color?
Nattlig
6
Also do you know how to make the “sale”/ “Salg” label green as well?

It can done by theme customisation with theme settings,
Go to online store → Open theme customisation → Open theme settings.
Add color scheme whichever you want.
Can you try this code @Nattlig
Hello @Nattlig
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
.product-form__submit {
background-color: #76c54d !important;
}
.product-form__submit:before, .product-form__submit:after {
box-shadow: none !important;
}
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hi
Edit your theme file
Add bellow css in your base.css file.
.product-form__buttons button {
background: #76c54d;
border: none;
}