change color of variant button mobile

Solved
Heinrich123
Tourist
10 0 5

Hey Guys,

 

I want to change the coloring of the variant buttons. Using this css code it changes it for desktop: 

.product-form__input input[type=radio]:checked+label {
background: #1a73c7 !important;
}

 

but on mobile the buttons are still black.

The domain is: printnotes.de password: 1

 

Thanks in advance,

best regards

Accepted Solution (1)
makkaomakka
Shopify Partner
886 173 183

This is an accepted solution.

Hi @Heinrich123 

 

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>
variant-radios .product-form__input input[type=radio]:checked+label {
background: #1a73c7!important;
}
</style>

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,

Makka

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

View solution in original post

Replies 3 (3)
oscprofessional
Shopify Partner
15736 2353 3051

Hello @Heinrich123 

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

@media only screen and (max-width: 600px){
.product-form__input input[type=radio]:checked+label {
    background: #1a73c7 !important;
}
}

 

Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Custom Pricing Wholesale App : Free | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing
makkaomakka
Shopify Partner
886 173 183

This is an accepted solution.

Hi @Heinrich123 

 

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>
variant-radios .product-form__input input[type=radio]:checked+label {
background: #1a73c7!important;
}
</style>

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,

Makka

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

Heinrich123
Tourist
10 0 5

Thank you my friend!