Hi,
While my website homepage displays as I want to on a desktop, does not happen the same on a mobile device. I just have a full slideshow on the homepage displaying several images. On mobile I have noticed that the slideshow appears exactly under the header (without any space) and there is a large empty space between the slide show and the footer. How i can reduce the space between slideshow and footer and maybe increase the space between header and slideshow but only for mobile ?
Currently I have the following css to keep the height of the slideshow only 60vh otherwise it takes all the height of the section and looks ugly.
@media screen and (max-width:767px) {
.gallery-fullscreen-slideshow {
height: 60vh !important;
}
}
Thanks in advance.