How to change text color on email signup and contact fields

I’m using the Beyond Theme and can’t seem to figure out how to change the text color in the contact form field and email signup field. Right now it’s white text on a white background so while text can be entered, the user can’t see what text was written. I’ve thoroughly searched and tried editing the code as suggested by other users, but still haven’t been able to solve the problem. Any thoughts would be much appreciated.

Site: https://cruxleyfieldgoods.com/pages/contact

1 Like

@cruxleyfieldgoo , Please add the below line of CSS code at the end of your theme CSS file.

body input:focus-visible, 
body textarea:focus-visible{
color:#000 !important;
}
1 Like

Hi @cruxleyfieldgoo ,

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
textarea#contact_form_template--16158091280553__1632180071f18cee62-contact-textarea {
    color: black !important;
}
input#search-input {
    color: black;
}

Result:

I hope it help.

Thanks so much! It worked. Truly appreciated…only wish I would have asked earlier.

1 Like

Perfect! Thanks so much!

Worked for me as well. Thank you!