Hi,
I recently added the following code to be able to use different photos on the desktop and mobile version and now I have the problem that the slideshows only show the pictures on the desktop version and there is no picture on the mobil version.
The Code:
-
.banner__media:first-child {
-
width: 100%;
-
}
-
.banner__media+.banner__media {
-
display: none;
-
}
-
@media screen and (max-width: 749px) {
-
.banner__media:first-child {
-
display: none;
-
}
-
.banner__media+.banner__media {
-
width: 100%;
-
display: block !important;
-
}
-
}
-
@media screen and (max-width: 749px) {
-
.banner__content::before{
-
padding-bottom: 150% !important;
-
}
-
}