hello how can i make my search bar like in Mobile View
mine looks like this right now !
A user seeks to make the search bar transparent in the Dawn theme’s mobile view, providing screenshots showing the desired appearance versus their current implementation.
Proposed Solutions:
theme.liquid file above the </body> tag to style the search barbase.css or theme.css file targeting the slideshow component with specific margin-top styling for screens with max-width 600pxKey Details:
hello how can i make my search bar like in Mobile View
mine looks like this right now !
Hey @Sohan2198
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
I want above the banner. Not on banner
@media only screen and (max-width: 600px) {
slideshow-component {
margin-top: 39px !important;
}
}
Here is the result you will achieve:
Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.