Mobile version search bar, dropdown in the same area.

Solved
AdolfoCV
Excursionist
28 4 3

Hello, how can I make sure that in the mobile version the search bar does not appear above my logo and that it only displays below in the same area.


Page: https://thn.pe/
Test page: https://7nepok5929v8glqw-60881207545.shopifypreview.com

 

Captura1.PNGCaptura2.PNG

Accepted Solution (1)
PageFly-Noah
Trailblazer
384 96 90

This is an accepted solution.

Hi @AdolfoCV 

 

This is Noah from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

<style>
@media screen and (max-width: 767px){

.search-modal.modal__content.gradient {
top:20px;
}
}
</style>

PageFlyNoah_0-1685500744001.png

 

Hope this can help you solve the issue 

 

Best regards,

Noah | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.


Make your Instagram Feed a Sales Generator with VIBE Shoppable Instagram Feed.

View solution in original post

Replies 2 (2)
PageFly-Noah
Trailblazer
384 96 90

This is an accepted solution.

Hi @AdolfoCV 

 

This is Noah from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

<style>
@media screen and (max-width: 767px){

.search-modal.modal__content.gradient {
top:20px;
}
}
</style>

PageFlyNoah_0-1685500744001.png

 

Hope this can help you solve the issue 

 

Best regards,

Noah | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.


Make your Instagram Feed a Sales Generator with VIBE Shoppable Instagram Feed.

AdolfoCV
Excursionist
28 4 3

Thank you so much. It worked.