Hello,
I am redesigning my landing page and am having difficulty resizing a custom slideshow and optimizing the size for desktop and mobile, respectively. The slideshow is much too large for both desktop and mobile and has either padding or a margin below the images. Furthermore, the button is in the incorrect position on mobile.
Currently, slide height is set to adapt to first image.
I have the following custom HTML, which only seems to accurately place the button on desktop:
@media only screen and (min-width: 750px) {
.slideshow {
padding-top: 0 !important;
padding-bottom: 0 !important;
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.slideshow-wrapper {
padding-top: 0 !important;
padding-bottom: 0 !important;
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.slideshow__btn {
bottom: 150px;
transform: translateX(-50%);
position: absolute;
}
}
Preview of page here