A space to discuss online store customization, theme development, and Liquid templating.
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 </body> tag
<style>
.product-form__input--pill input[type=radio]:checked+label {
background: #1A3636 !important;
}
</style>
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!
Only this pills or also the Quantity?
Try this one.
variant-selects .product-form__input--pill input[type=radio]:checked+label {
background-color: #1A3636;
}
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!