• Resolved tbringedahl

    (@tbringedahl)


    Having issues with the label formatting… the word ‘Name’ ‘Email’ etc are black and the required ‘*’ is red. I need the words’Name’ ‘Email’ etc to be white and it would be ideal if I could also change the color of the required ‘*’. Any ideas?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @tbringedahl,

    To change the color of the label, please paste this CSS code in the additional CSS box of your theme customization. You can find the additional CSS box in your theme customization option. Click on Appearance > Customize and then scroll a bit and you will see Additional CSS box.

    //change color for field label
    .everest-forms label.evf-field-label {
        font-weight: 600;
        color: #ffffff;
    }
    
    //change color for required star icon
    .everest-forms label .required {
        color: #fa5252;
    }

    You can change the color as per your requirement.

    Let me know if it helps or not and I will get back to you.
    Regards!

    Hi Deepak,

    What if I would like to change the label only for a certain form instead to all forms?

    Thank you

    Hi,
    Added the code in my Custom CSS area but the label color did not change.

    //change color for field label
    .everest-forms label.evf-field-label {
    font-weight: 600;
    color: #ffffff;
    }

    Am I doing something wrong?
    My website has a dark background (black) and the label text is still a dark grey.
    Thanks for any advice you can offer.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Text Color Issues’ is closed to new replies.