Currently, I am utilizing swiper.js through a CDN. However, there seems to be an issue in the swiper-bundle.min.css CDN file where the .swiper-button-next
and .swiper-button-prev
classes are set to top:50%;
like so:
.swiper-button-next, .swiper-button-prev {
position: absolute;
top: 50%;
}
My intention is to adjust the positioning of .swiper-button-next
and .swiper-button-prev
to bottom:11px;
. I attempted to achieve this in my own CSS file, but the CDN's top:50%
rule is overriding it. I even tried using !important
, but it had no effect.