Hi, I would like to know how can I change the background color of the picked variants?
From the settings, I can only use the same color as the text color (color scheme), but I would like to use a different one (red).
Dawn theme
Thank you !!
Hi, I would like to know how can I change the background color of the picked variants?
From the settings, I can only use the same color as the text color (color scheme), but I would like to use a different one (red).
Dawn theme
Thank you !!
.product-form__input--pill input[type=radio]:checked+label {
background: red !important;
}
Hi @Daniel19901 ,
You can follow these steps
Step 1: Go to Online store > Themes > Edit code and find base.css file
Step 2: Insert below code at the end file and Save them
.product-form__input--pill input[type=radio]:checked+label {
background-color: red !important;
color: black !important;
}
Hi @Daniel19901
Check this one.
.product-form__input--pill input[type=radio]:checked+label {
background: red;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!