Unable to click Header__Submenu values when overlapping custom image slideshow

Solved

Unable to click Header__Submenu values when overlapping custom image slideshow

Artey
Tourist
12 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
9270 1862 1894

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>

- Helpful? Like and Accept solution!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. 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
Tourist
12 0 5

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