Change form font color to black

Topic summary

A user wants to change form placeholder text from grey to black for fields like “Full Name” and “Company Name” on their contact form.

Two solutions provided:

  1. Custom CSS method (Dan-From-Ryviu): Add CSS code through Online Store > Themes > Customize > Theme settings:

    .section-contact input::placeholder { color: #000; }
    
  2. theme.liquid method (Tech_Coding): Insert CSS directly in theme.liquid file before the </body> tag:

    #contact-us-page input::placeholder,
    .float__wrapper textarea::placeholder {
      color: #000 !important;
    }
    

Both approaches target the ::placeholder pseudo-element to change the color to black (#000). The second solution includes textarea placeholders and uses !important to ensure the style override takes effect. The discussion appears resolved with accepted solutions marked.

Summarized with AI on November 4. AI used: claude-sonnet-4-5-20250929.

Hi,> > I want to change the form font to black it’s now like a grey color. the font that says full name, Company name etc.> > My site is https://lux360.net> >

Hi @Luxluxlux360

You can add this code to Custom CSS in Online Store > Themes > Customize > Them settings to change them to black.

.section-contact input::placeholder { color: #000; }

Hello @Luxluxlux360

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

#contact-us-page input::placeholder, .float__wrapper textarea::placeholder { color: #000 !important; }

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.