I checked my development site on iPhone 15 and Sony xperia as52. I also checked these particular sizes in Firefox development tools. The slides are being displayed in two but only as a half of each instead of a single full slide. If I push up the slide a bit up, it displays correctly as a single slide. With the Firefox development tool I modified the code as follows:
@media only screen and (min-width: 393px) and (max-width: 425px)
{
.metaslider li:before,
.metaslider li:after {
margin: 0 40px 0 0; !important;
}
}
This seems to work, but I haven’t tested it on actual devices. Please let me know if this is feasible. Also, please let me know if I have to put in the entire code or will the above code be sufficient:
@media only screen and (min-width: 393px) and (max-width: 425px)
{
.metaslider li:before,
.metaslider li:after {
content: "" !important;
display: none !important;
bottom: auto !important;
margin: 0 40px 0 0; !important;
}
}
-
This reply was modified 3 months, 1 week ago by mica123.