Change button colour

This is the page: https://bmlasertools.com/products/co2-laser-focus-lens

I would like to change the colour of this button to #1A3636

Hey @bmlasertools

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. 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

Hey there @bmlasertools if you’d like a practical look at how to do this, I recommend giving this video a look https://m.youtube.com/watch?v=npbM1UmMt4o

Let me know if this helps you out!

Hi @bmlasertools

Only this pills or also the Quantity?

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
variant-selects .product-form__input--pill input[type=radio]:checked+label {
    background-color: #1A3636;
}
  • And Save.
  • And if its only this not include the quantity use this code instead.
fieldset:nth-child(1) input[type=radio]:checked + label {
    background-color: #1A3636;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!