Hi!
I’m having an issue on the mobile version of my site, on the main page the header image is fine, but if you select the menu, the header image covers the first selection option, so people don’t know it is there. I’ve been told this is a coding issue but I don’t know how to fix it. Thank you for your help
Main Page
Drop Down menu selected, the first option is covered and the header stays on top of this option, even if you scroll down
1 Like
Hi @Bleu-Rose
Would you mind to share your Store URL wbesite? with password if its protected. Thanks!
Of course! My mistake, thank you!
https://bleurosedesigns.com/
1 Like
Hi @Bleu-Rose ,
This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.
While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:
- Go to Online Store → Theme → Edit code
- Open your theme.liquid file
- Paste below code before :
Best regards,
Anthony
1 Like
Thank you, Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 504px){
.mobile-nav__table {
margin-top: 10px;
}
}
@media only screen and (max-width: 749px) {
nav.mobile-nav-wrapper.medium-up--hide.js-menu--is-open {
margin-top: 40px;
}
.section-header {
margin-top: 10px;
}
nav.mobile-nav-wrapper.medium-up--hide.js-menu--is-open.sub-nav--is-open {
margin-top: 34px;
}
}
@media only screen and (max-width: 371px){
nav.mobile-nav-wrapper.medium-up--hide.js-menu--is-open {
margin-top: 70px;
}
I hope it help.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thank you so much! This worked!! What a relief!