How to change the default color text in form?

Hello,

Can you guys answer the questions we asked her? Thank you in advance.
(Im referring to the question in the comments section of that video by the way)

This is done with custom code. Insert this into your header or footer:

To change the color simply type in the Hex number everywhere where the color is #333 right now with the color you would like.

Hope this helps. :wink:

<style>
.w-input::-webkit-input-placeholder { /* WebKit browsers */
    color:    #333;
}
.w-input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #333;
    opacity: 1;
}
.w-input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #333;
    opacity: 1;
}
.w-input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #333;
}
</style>

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