It looks like the z-index in your code is causing the section to overlap with the menu and header. You can try adjusting it so that the header stays on top.
Fix: Adjust z-index and position
Modify your existing code to ensure the header stays above the section:
@media screen and (max-width: 749px) {
.section-template--23842860335446__image_with_text_RiKa3E-padding {
padding-top: 0px;
position: relative;
z-index: 1; /* Lower z-index to keep it below the header */
top: -80px;
}
.header, .menu {
position: relative;
z-index: 10000; /* Ensure the menu and header stay on top */
}
}
Why This Works:- The section’s z-index is set lower (z-index: 1) so it won’t overlap the header.
The .header and .menu now have a higher z-index (10000), ensuring they always appear on top.
Need an Easier Fix? Try EasyEdits
I’m the developer of EasyEdits—a Shopify app that helps you tweak your store’s design without touching code. It’s free to try, and you can keep the changes even if you don’t subscribe!