Drop down menu on HOME page is not working

It works on every page except for the home page on desktop

my site:

www.inspirelightwork.com

This actually happens on collection pages too.

For each banner/slide you have element like this – I believe it’s not a part of original theme:


z-index of 999 makes this link element to “float” above menu drop-downs. When you thin you’re clicking the drop-down you’re actually clicking the banner link.

999 is too much here – 3 would be enough though it would not fix the problem on it’s own.

In addition you need to open assets/base.css, find this code:

/* section-header */
.section-header.shopify-section-group-header-group {
  z-index: 3;
}

and change z-index from 3 to, say, 5.

And also

.shopify-section-group-header-group {
  z-index: 4;
}

change from 4 to, say, 6.

Thank you so, so much! Where do I find the code for the first part so that I can change the 999 to 3?

I figured it out! Thank you SO much!!