Why is my search text appearing as white on my site?

Hi there, the search results are turning up white. I’ve tried

.predictive-search {  color:#74AAE1 !important;
}

but that hasn’t worked.

Site is www.rosgervayart.com - password is ’ HELLO123 ’

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >base.css and paste this at the bottom of the file:
.predictive-search__item {
color: #74AAE1;
}

Screenshot :- https://prnt.sc/NzjnZ9AT7aVw

Hello @kirsten11123

Add this CSS below of Online Store >> Edit code >> Assets >> base.css

.predictive-search__item-content h3 {
color: #74AAE1 !important;

}

Thank you

This hasn’t worked either. Hmm I’m so confused!

This hasn’t worked. I don’t know why it won’t!

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >base.css and paste this at the bottom of the file:
.predictive-search__item {
color: #74AAE1!important;
}
.predictive-search__item-content h3 {
color: #74AAE1 !important;
}

Screenshot :- https://prnt.sc/gU3VoLAwFWZz

Hello @kirsten11123

Add this CODE in theme.liquid file before closing body tag**(/body)**.

.predictive-search__item { color: #74AAE1!important; } .predictive-search__item-content h3 { color: #74AAE1 !important; }