Your homepage sliders showing two half images side by side is not a known Webflow bug, but likely a slider configuration issue with styles or structure. Here’s how to troubleshoot and fix it.
1. Check Slider and Slide Dimensions
- Ensure the
Slider
element has a defined width: 100% and doesn’t have fixed pixel widths unless intentional. - Each Slide element inside the Slider should also be set to width: 100% so it takes up the full slide area.
- Avoid margin or padding on the Slide that could split content.
2. Inspect Image Sizing and Alignment
- Images inside the slides should be set to:
- max-width: 100%
- display: block
- object-fit: cover (if applicable)
- If using Flexbox, ensure direction is set to horizontal and no wrapping occurs.
3. Check for Overflow or Scaling Issues
- Inspect parent containers of the slider. If any wrapper has overflow: hidden or width < 100%, it could clip the slide or misalign them.
- If any outer wrapper uses transform: scale(), it can cause unexpected rendering.
4. Test Visibility Settings
- If using Webflow interactions to show/hide slides or sliders on page load, confirm those animations don't reduce width or position objects off-center.
5. Reset Element Widths Temporarily
- Temporarily remove custom widths or margins and test the slider in preview mode. This isolates whether the layout issue is from applied styles.
6. Ensure No Custom Code Is Interfering
- If you’ve added any custom JavaScript affecting sliders, disable it to see if the issue resolves.
- Also check if external libraries (like Swiper or Slick) might be conflicting with Webflow’s native slider behavior.
Summary
The slider showing two half images is typically caused by incorrect width settings or flexbox misconfigurations, not a Webflow platform bug. Make sure your Slides and Images are set to 100% width and no parent container is restricting the layout.