• Is it possible to change the input text color in the form ex:Name, email. It’s a light grey by default, I would like to change it to black.

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author Icegram

    (@icegram)

    Hi,

    Are you referring to the placeholder text color?
    Because the text color of input field will be inherited from your theme.

    To change the placeholder color use the following CSS code.
    You may need to use “!important” to override the rainmaker form css.

    .rm_form_container input::-webkit-input-placeholder{
        color: #000;
    }
    .rm_form_container input::-moz-placeholder{
        color: #000;
    }
    .rm_form_container input:-moz-placeholder{
        color: #000;
    }
    .rm_form_container input:-ms-input-placeholder{
        color: #000;
    }

    This will work with the most of the browser version.
    I hope this helps.

    Thanks,
    Team Icegram.

    • This reply was modified 7 years, 6 months ago by Icegram.
Viewing 1 replies (of 1 total)
  • The topic ‘Text color’ is closed to new replies.