Ninja forms CSS issue

Im trying to get the text on the form to show in white lettering instead of black. I used this code in Additional CSS , .nf-field-label{
text-transform: uppercase;
color: #22313F;
font-weight: 100 !important;
font-size: 14px;
font-family:’Montserrat’, sans-serif;
}

And it worked for some of the text but not all of it. if you got to http://1ni.aca.myftpupload.com/estimates-appointments/ you will see white bold text, but the other text on the page is black. How can I get it all white?

Thanks!!!

Hi @IRGmarketing,

Thanks for reaching out.

If you want to change the color of all labels in your Ninja From, you need to target this class.

.nf-form-cont label {
 //add your css code here
} 

Then If you want to change the color of all labels and titles and form field required note, please use the structure below.

.nf-form-cont label, .nf-form-fields-required, .nf-form-title {
//add your css code here
}

Hope that helps.

Thank you.

That worked! Thank you.

@IRGmarketing,

It’s our pleasure to help you.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.