Fontcolor Placeholder Dropdown Field

Hi,
the Font color Placeholdertext from Dropdown is not the same than those from the other form fields.
I can’t adjust it either.
What is the CSS to help you?

1 Like

I have this

[class*="Dropdown__Select-sc"]{
  rgba(17, 17, 17, 0.5)
}

@Helga @Rena but the Label Inside Color when the Label Position is inside i can’t get it.


grafik

1 Like

Hey @Sina, thanks for your request! :pray:

You can change the font color in the dropdown menu using the following CSS code:

[class*="Dropdown__Select"], [class*="Dropdown__Select"] option {
color: rgba(17, 17, 17, 0.5);
}

Please add this code in the beginning of your CSS codes like this:

Once you do this, please let me know how it goes :innocent:

Hey @Rena thank you.
It only works half the time. :face_with_peeking_eye:
The selected option shouldn’t be like that, just the placeholder. “Anrede *” is the Placeholder.

Hence the question option[value=“”]

grafik

Dear @Sina, I’m sorry for the misunderstanding! :pray:

Here is another CSS code which should work correctly:

[class*="Dropdown__Select"]:has(option:disabled:checked) {
color: rgba(17, 17, 17, 0.5);
}

Could you please try it and let me know if this helped?