The slideshow on my homepage is cropped on the full screen/large desktop view. Is there any way to make sure that the slideshow images look good on each kind of screen? My website is www.littletoesch.com Thank you!
1 Like
yes, please try this code
- Go to Online Store->Theme->Edit code
- Asset->/theme-index.min.css ->paste below code at the bottom of the file.
.slideshow-wrapper:not(.slideshow-same-height) .slick-list, .slideshow-wrapper:not(.slideshow-same-height) .slick-track, .slideshow-wrapper:not(.slideshow-same-height) .slideshow-content-wrapper {
height: 80vh;
}
1 Like
Hi @bgold ,
Go to Assets > theme-index.min.css and paste this at the bottom of the file:
@media (min-width:721px) {
.slideshow-wrapper:not(.slideshow-same-height) .slick-list,
.slideshow-wrapper:not(.slideshow-same-height) .slick-track,
.slideshow-wrapper:not(.slideshow-same-height) .slideshow-content-wrapper,
.slideshow-wrapper:not(.slideshow-same-height) img {
height: 100% !important;
}
}
Hope it helps!
1 Like
Thank you!
1 Like
Hey there, i’m facing the same problem and this code isn’t helping, can you help me?