So on my website when i press the search button, the ends of the search bar are see through, but when i open a new dawn theme, the ends are not see through, how do i fix this/ change it back?
theme:dawn
website:desire-online.net
A user encountered an issue where the search bar on their Dawn theme website (desire-online.net) has transparent/see-through ends when activated, unlike a fresh Dawn theme installation where the ends appear solid.
Two solutions were provided:
theme.liquid modification: Add specific code above the </head> tag in the theme.liquid file (though the exact code snippet appears corrupted in the original post)
CSS fix: Add the following code to the bottom of the base.css file:
details[open] > .search-modal {
background: #3f3f3f !important;
}
Both solutions involve accessing the theme code through Online Store > Themes > Edit Code. The CSS approach targets the search modal’s background color directly to eliminate the transparency issue. The discussion remains open with no confirmation of which solution worked.
So on my website when i press the search button, the ends of the search bar are see through, but when i open a new dawn theme, the ends are not see through, how do i fix this/ change it back?
theme:dawn
website:desire-online.net
You can follow the following steps:
If this solution is worked, then please Like this and Mark this as accepted solution!
Laddi
You can solve it by adding this CSS code to the bottom of base.css file in Online store > Themes > Edit code > Assets
details[open] > .search-modal { background: #f3f3f3 !important; }