Flex-techno Theme Product Option Color Change

캡처.PNG

Hi guys, you’re making a lot of money in 2023, right?

I’m making a nice shopping mall with a Flex-techno theme, but I don’t know how to change the text color of the product option(Captured Image File Notes).

The background is black, so I want to change it to white, but I can’t find it.
Is it something that needs to be solved by coding?

Hello @globalseller ,

Greetings!!

Please follow the steps
Online store → Actions → Edit code → Assets → styles.css

Paste this below code in this CSS file at the last

.label, .selector-wrapper label {
    color: #fff !important;
}

Output:

1 Like

Hi @globalseller ,

Please go to Actions > Edit code > Assets > styles.css file and paste this at the bottom of the file:

.options-selection__option-name {
    color: #fff !important;
}

Hope it helps!

1 Like