Currently, I am working with a carousel feature that displays 2 testimonials per slide. I have set it up so that when the screen size is at least 1200px, 2 testimonials are shown. However, when the screen size drops below 1200px, only one testimonial should be displayed. Unfortunately, due to a CSS issue, the second slide is still appearing on smaller screens. I attempted to solve this problem with the following code in my stylesheet:
@media screen and (max-width: 1199px) {
.owl-wrapper > li:nth-child(2) {display: none !important;}
}
Is there anyone who has encountered this issue before and knows how to fix it? You can visit the site here.