Input text color change

Hi, for some reason the input text on the contact page is white can anyone send me the code to make that text (as well as the dropdown - country and the message) black ?

https://n1ppjm-vf.myshopify.com/pages/contact-1
pass: peopri

Hi @Daniel19901

  • Go to Online Store → Themes.
  • Click on Actions → Edit code.
  • In Assets, find the CSS file (likely theme.css, base.css, or styles.css).
  • Open the CSS file.
  • Scroll to the bottom and paste this code:
html body form#contact_form div.fieldset .form-control .input::placeholder,
html body form#contact_form div.fieldset .form-control .textarea::placeholder {
  color: #333 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #333 !important;
}
​

Hi @Daniel19901

You can follow this instruction:

  1. Go to Shopify > Theme > Customize

  2. Copy and paste this code on Theme settings > Custom CSS section

select#select--template--23498555851017__contact_GjdVCf--contactcountry {
    color: black !important;
}

textarea#input--template--23498555851017__contact_GjdVCf--contactbody {
    --text-color: black !important;
}

Result: