New Shopify Certification now available: Liquid Storefronts for Theme Developers

Contact form field text missing?

Solved
Coreymw85
Excursionist
15 0 3

Hello,

I can see the text when I type into the fields, but I no longer see the text that advises what each field is (First Name, Last Name, Email...).

https://shopjedipixiedust.com/pages/contact

Screenshot 2023-11-19 at 12.00.11 PM.png

Accepted Solution (1)
PageFly-Theodor
Navigator
253 37 41

This is an accepted solution.

should add code in <head>

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 5 (5)
PageFly-Theodor
Navigator
253 37 41

Hi @Coreymw85 ,
This is Theodore from PageFly - Shopify Page Builder App.

you can give the password


Best regards,
Theodore | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

Coreymw85
Excursionist
15 0 3

helppassword!

PageFly-Theodor
Navigator
253 37 41

You can add code

Online Store ->Theme ->Edit code->theme.liquid

<style>
/* WebKit, Edge */
::-webkit-input-placeholder {
  color: white;
}
/* Firefox 4-18 */
:-moz-placeholder {
  color: white;
  opacity: 1;
}
/* Firefox 19+ */
::-moz-placeholder {
  color: white;
  opacity: 1;
}
/* IE 10-11 */
:-ms-input-placeholder {
  color: white;
}
/* Edge */
::-ms-input-placeholder {
  color: white;
}
/* MODERN BROWSER */
::placeholder {
  color: white;
}
</style>

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

Coreymw85
Excursionist
15 0 3

@PageFly-Theodor 

Where should the code be added? I added it at the bottom, just before the </body> tag and nothing has happened.

PageFly-Theodor
Navigator
253 37 41

This is an accepted solution.

should add code in <head>

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.