Re: Unable to click Header__Submenu values when overlapping custom image slideshow

Solved

Unable to click Header__Submenu values when overlapping custom image slideshow

Artey
Excursionist
16 0 5

Hi, I have setup my drop down menu and have them linked correctly. I can click them from any page except the home page, and they function properly. It appears that when I click on menu items from the Home page, the picture banner is clicked instead of the menu item. Please Help.

 

Store link is artey.com.au

Accepted Solution (1)

stefansweb2020
Shopify Partner
134 10 5

This is an accepted solution.

For some reason your image have z-index of 8 that's needs to be set to be 1, you need to find where is the image showing in code and make z-index: 1


Screenshot at Jan 18 15-48-06.png

banned

View solution in original post

Replies 3 (3)

Dan-From-Ryviu
Shopify Partner
11326 2216 2385

You can solve the issue by adding this code to your online store > Themes > Edit code > open theme.liquid and add this code after <head> element

<style>
.section-header { z-index: 9 !important; }
</style>

- Found this helpful? Hit "Like" and "Accept as Solution"! - Feeling generous. Buy me coffee!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

stefansweb2020
Shopify Partner
134 10 5

This is an accepted solution.

For some reason your image have z-index of 8 that's needs to be set to be 1, you need to find where is the image showing in code and make z-index: 1


Screenshot at Jan 18 15-48-06.png

banned
Artey
Excursionist
16 0 5

Thank you so much. I struggled to find the location of the z-index. This fixed it!