Thanks for the suggestion. I will consider it for future updates.
Unfortunately, since browsers handle this in non standard ways, there is no one simple style setting, there is a different one for each browser type.
View the HTML source and you will see the style.
@Mike-
I did a little digging, and here is the answer:
ref to comment answer: http://css-tricks.com/snippets/css/style-placeholder-text/#comment-267934 – the commenter, Thibaut, says:
Firefox 19 lowers the opacity of the placeholder to 0.54 by default.
To get the correct color you need to reset it:
::-moz-placeholder { opacity: 1; color: red; }
I am using Firefox, and with this Opacity:1 style I get fully transparent color. Hopefully this will be of help if anyone else runs into the same situation. –Bill
Can you send me a link to your form so I can see exactly how you changed the style?
http://www.fastsecurecontactform.com/contact
@Mike- Sure, happy to do so.
I did ‘belt and suspenders’ in my Css, setting opacity:1 for all the vendor prefixes (probably unnecessary), and using the single-colon for pre-FF19. I also found it useful to put the color in this area, too:
::-webkit-input-placeholder { opacity: 1; color: #333333; } /* gray80 */
:-moz-placeholder { opacity: 1; color: #333333; } /* Firefox 18- (one color)*/
::-moz-placeholder { opacity: 1; color: #333333; } /* Firefox 19+ (double colons) */
:-ms-input-placeholder { opacity: 1; color: #333333; }
Site link using this Css:
http://www.creativeretro.com/contact-me
Hope that is of some help.