Artez
1
Hi I have a small issue with a picture going above the header on one of my page.
It also happen on mobile.
Is there a way to keep the header always on the top layer so the picture wont go over it?
https://wmqgez-r2.myshopify.com/pages/video-creation-editing
Warm regards.
Hello @Artez
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.
.ai-hero-section-aaeday04xrlvas1vlvaigenblock77d6c76mytx8t {
z-index: 1;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hello there
Please add that CSS in base.css file
.section-header.shopify-section-group-header-group {
z-index: 9;
}
@Artez
Please set Z index Zero or one, and it will solve this problem of your Shopify store
.ai-hero-content-aaeday04xrlvas1vlvaigenblock77d6c76mytx8t {
- position: relative;
- z-index: 0;
- width: 100%;
- max-width: 1200px;
- margin: 0 auto;
- display: grid;
- grid-template-columns: 1fr 400px;
- gap: 40px;
- align-items: center;
}
Thanks
Krishangtechnolab
Shopify development Agency
please paste this code in the end of base.css file.
hero-section-aaeday04xrlvas1vlvaigenblock77d6c76mytx8t.ai-hero-section-aaeday04xrlvas1vlvaigenblock77d6c76mytx8t {
z-index: 1;
}