my problem is that i experience white spaces on my mobile version between slider images on the following website: athleteperks.co.uk
I've been told to you use the following code:
}
.swift-slider-outer { height: auto !important;
}
this code removes the white spaces between my sliders on my homepage, however it removes my header slider on the mobile and desktop versions.
In your CSS you need to remove the following line:
it is within your
@media (max-width: 768px)
media query. This is forcing your slider to be a certain pixel width and is overriding your solution which is.swift-slider-outer { height: auto !important;}
FYI -
!important
is got great practice. It's always best to try to see what exactly is going wrong first.