Site logo

Archived topic

How to Change Placeholder Text Color?

11 replies · Started by Georgi on February 28, 2022

Viewing posts 1–12 of 12

Hello,

I tried all color options from the Customizer but the placeholder text color couldn't be changed. In the checkout there are placeholders in the fields which with the current color settings for form, makes the placeholder text hard to be seen https://prnt.sc/QbvmTJ31O2Qg

Can you help change the placeholder text color to white?

Link in private area for evidence.

Hi there,

you can add some CSS:

input::placeholder {
    color: #fff;
}

Works great! :)

Also - how can the hover color be changed when going through variations on single product pages? https://prnt.sc/38yup0tc3KGi

I couldn't find such an option in the Customizer.

That is not something the Theme can change.
The Select box is added by the Woocommerce plugin and they don't add any customizations to it - they leave it up to the Browser. See here fore example is how Mac OS treats a select box:

https://www.screencast.com/t/K0kUx4g6v

Oh, I see, disappointing :(

One more thing - is it normal for the thumbnails in the checkout to be this small https://prnt.sc/2dO0HPTH0DpE
Like did you set this to be default and what is the purpose? Can they be enlarged?

Thanks, this did the job!

I'm wondering how can the underlying be removed from links in the breadcrumbs and from the star rating number under a product but the underlying to stay for other links on a webpage? https://prnt.sc/4OSuKW3_kVuZ

This will be very useful if it can be achieved.

Has the original topic about the placeholder text color been resolved?

If so please open a new topic for the separate question.

Thanks!

Sure!

Thanks :)

as Davids Code above doesn't change the message area placeholder an addition:

/*Contact Forms7 Placeholder Colors*/
input::placeholder {
    color: #000000;
}

textarea::placeholder {
    color:#000000;
}

I used this Code for Contact Form 7

Thanks for sharing that Matthias!

This archived topic is closed to new replies.