I’m using the Artisan theme. On desktop the spacing is fine, but on mobile there is very little space between the announcement bar and logo. How can I increase the space here on mobile only?
@Anonymous , do this to fix it in 20 seconds:
- In your Shopify Admin go to: online store > themes > actions > edit code
- Find **Asset > styles.**css and paste this at the bottom of the file:
@media (max-width: 749px){
.topBar__details{
margin-top: 10px !important;
}
}
If it helps you please click on the “like” button and mark this answer as a solution!
Thank you.
Kind regards,
Diego
yes, please try this code
- Go to Online Store->Theme->Edit code
- Asset->/styles.css ->paste below code at the bottom of the file.
@media (max-width: 749px) {padding-top: 20px !important;}
This is Victor from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Add this CSS at the bottom
Online Store ->Theme ->Edit code
Assets → styles.css
@media (max-width: 767px){
.mobile-searchForm {
margin-top: 18px;
}
}
Hope you find my answer helpful!
Best regards,
Victor | PageFly
Hello @Anonymous ,
It’s GemPages support team and glad to support you today.
I would like to give you the recommendation to support you so kindly follow the steps below:
- Go to Online Store > Theme > Edit code of your current theme
-
Open your theme.liquid theme file
-
Paste the below code before
For example,
If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team
** @diego_ezfy **
This one worked, thank you!

