When I refresh or first time to website a huge first image from the 1st image of carosel appears, then it goes to the 3 images. is it possible to disable this as it might draw users away.
my site is https://vazluxe.com
Please refresh you will see, especially on desktop!
Thsi image circled appears almost full screen, then it goes to the 3 images. its aquck flash but notciable.
hi @Luxurymrkt
It looks like the first image in your carousel briefly appears full-screen before transitioning to the standard three-image layout. This is likely due to a loading issue or how the slider initializes.
To fix this, try the following:
Check Theme Settings – In your theme customizer, look for any preload or autoplay settings that might be causing the flash.
CSS Fix – Add this to your base.css or theme.css file to prevent the full-screen effect:
.slideshow__slide {
max-height: 100vh; /* Ensures it doesn’t take up the full screen */
overflow: hidden;
}
JavaScript Delay Fix – If the issue persists, a slight delay in initializing the slider might help. You may need to adjust your theme’s JavaScript to ensure all elements load properly before displaying.