A user implemented clickable slideshow functionality in a Shopify Dawn theme by adding an absolutely positioned anchor tag with z-index: 999. This created an unintended consequence: the slideshow overlay blocked the header’s dropdown navigation menu from being clicked.
Problem Details:
The anchor tag’s high z-index caused it to layer above dropdown menu items
Users couldn’t interact with navigation links that appeared over the slideshow area
Solutions Provided:
Two community members offered CSS fixes targeting base.css:
websensepro’s approach: Increase z-index of submenu items to 1111111 !important
oscprofessional’s approach: Set .header__submenu.list-menu to z-index: 999999 and .slideshow__slide.grid__item to z-index: 2
Resolution:
The issue was resolved using oscprofessional’s code, which successfully allowed dropdown menus to appear above the clickable slideshow while maintaining the desired functionality.
Summarized with AI on November 2.
AI used: claude-sonnet-4-5-20250929.