I am using the Supply theme which is a vintage Shopify theme. The issue I am facing is that when someone types in a search bar text get merges with the background color of the search bar which makes it unreadable. Please suggest a way how to change the text color of the search bar to make it readable, through coding.
The issue is coming only in the mobile version.
@media only screen and (max-width: 749px) {
.wrapper input[type="search"] {
color: white !important;
}
}
Add this code in the bottom of theme.css or theme.scss file.
@media only screen and (max-width: 749px) {
.search-bar input {
color: #fff;
}
)
Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid
Thanks a lot, My issue is now resolved.
Thanks, My issue is now resolved.
