Hello. Is there any way to get that white section below our slideshow to not cover part of the slideshow? Image attached below.
Topic summary
A store owner is experiencing a layout issue where a white section overlaps and covers part of their slideshow on the Venture theme.
Proposed Solution:
- Access the theme code editor (Online Store → Theme → Edit code)
- Locate the
theme.scssfile - Add CSS code at the bottom:
#shopify-section-slideshow.hero { margin-bottom: 40px; } - Save the changes
This CSS adjustment adds bottom margin to the slideshow section to prevent the white section from overlapping. The issue appears to be a spacing/margin problem between theme sections that can be resolved through custom CSS.
Hello @EPAS
Step 1: Go to Online Store → Theme → Edit code.
Step 2: Search file theme.scss
Step 3: Paste the below code at bottom of the file → Save
#shopify-section-slideshow .hero { margin-bottom: 40px; }
