customizing the contact form

Hi

I have a hard time customizing the contact form with css. I still miss to figure out how to change the grey font color in the message field and how to capitalize the text in the input fields

The contactform is to be found on this page http://www.jetteschrum.dk/ligeomsnart/kontakt

If that does not work, try http://www.jetteschrum.dk/ligeomsnart/ first and then http://www.jetteschrum.dk/kontakt

There is a “comming soon page” in front.

Thanks in advance
Best regards
Jette

Hi Jette,

Are you referring to this form - https://cloudup.com/cGYgkSxXLrB

Thanks,
Danny

no, thats the comming soon page.

So please go to http://www.jetteschrum.dk/ligeomsnart/ (that is the link behind the comming soon page)

After you reach there - the link is http://www.jetteschrum.dk/kontakt

Hi Jette,

Can you try the following CSS, please:

/* Webkit */
.fl-contact-form textarea::-webkit-input-placeholder,
.fl-contact-form input[type=text]::-webkit-input-placeholder,
.fl-contact-form input[type=email]::-webkit-input-placeholder {
    color: #000;
    text-transform: capitalize;
}
/* Mozilla */
.fl-contact-form textarea::-moz-placeholder,
.fl-contact-form input[type=text]::-moz-placeholder,
.fl-contact-form input[type=email]::-moz-placeholder {
    color: #000;
    text-transform: capitalize;
}

Thanks,
Danny

Thank you ! :o)

No problem, Jette. Happy to help.

Thanks,
Danny