does any one know how to change the font color on a form...?

Patricia_Mercha
Level 2

does any one know how to change the font color on a form...?

Been trying to change the font color on a form - I have selected the form with the black background to provide a lighter colour, but want white not grey...
Can anyone help?
thanks
Patricia 
Tags (1)
4 REPLIES 4
Anonymous
Not applicable

Re: does any one know how to change the font color on a form...?

You could try coding it in HTML Or add a CSS file. CSS would override the present font color.  
Patricia_Mercha
Level 2

Re: does any one know how to change the font color on a form...?

OK - If tried - whist looking at the form - the text changed color to white...so I save and finish and approve document.  then when I go back in - it reverts back...I am usign the coding which appears at the bottom of the form, so when I click to inspect the document...

Any other suggestions...could be doing it wrong here...
Scott_McKeighe2
Level 5

Re: does any one know how to change the font color on a form...?

I would try coding the color of the fonts at the landing page level with a HTML script block. It's a pretty clean way to control the look of a single form on a single page (or with tokens, single forms on multiple pages).
Sonali_Jadeja3
Level 4

Re: does any one know how to change the font color on a form...?

We use custom CSS on form settings.

Here's the code to make field labels white -

.mktoLabel, body .mktoForm .mktoLabel

{

  color:white !important;

}