Skip Navigation

[Resolved] need to change font color in description box

This support ticket is created 5 years ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 -
- 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 -

Supporter timezone: Europe/London (GMT+00:00)

Tagged: 

This topic contains 3 replies, has 2 voices.

Last updated by Nigel 5 years ago.

Assisted by: Nigel.

Author
Posts
#1455305

The description box field font is too light to read. Need to change it to black. But not sure how. I did change the field fonts, but the description box didn't change colors.

#1455909

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+00:00)

Hi Lisa

Specifically what description box do you mean?

#1456363
submitpage.jpg

So sorry about that. It is on the Submission page for the client to enter their information. The only way I see to change the font color is to change the font color for the "body" of the entire website, which I cannot do since the pages are in black and I don't want to change the entire body font color. Just the Description field form box on this page.
hidden link?

#1456383

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+00:00)

OK, it's a textarea in a form, that inherits the font colour from the body.

I expect that you would want to change the font colour for any textarea that appeared on this page, so you don't need to worry too much about the appropriate CSS selector, you should just be able to update the colour using a simple custom CSS rule (that you can add to the form) such as

textarea {
  color: #333;
}