A user implemented custom slideshow code in the Dawn theme but encountered a layout problem where thumbnail images below the navigation arrows are overlapping other page sections.
Proposed Solutions:
Solution 1 (Moeed):
Add custom CSS code to the theme.liquid file, placed above the </body> tag
Includes a screenshot showing the expected result after implementation
Solution 2 (Dotsquares):
Identified the root cause as a z-index conflict
Provided CSS targeting .custom-slideshow-thumbnails (z-index: 1) and .custom-slideshow-navigation (z-index: 2)
Suggested alternative fixes: increasing z-index values to 10 or wrapping thumbnails in a container with overflow: hidden
Status: The issue remains unresolved as the original poster has not confirmed which solution worked. Both responses offer CSS-based fixes but use different implementation approaches.
Summarized with AI on October 30.
AI used: claude-sonnet-4-5-20250929.
I’m using the Dawn theme, and I’ve added custom code for the slideshow section. However, the small slideshow images below the arrow navigation are overlapping the sections (reference image attached). It seems to be an indexing issue - could you please help me resolve it?