Change the pagination bullets color on image slider
-
I am adding css to change the arrow buttons and the pagination bullets color on image slider. I follow another post here to change the arrow color into white, but the pagination bullets are in black color now, I want to change it into white also. My code is like below:
.swiper-button-next, .swiper-button-prev {
color: white !important;
background-image: none !important;
}.swiper-pagination-bullets {
color: rgba(255,255,255,0.5) !important;
}.swiper-pagination-bullets-active {
color: white !important;
}The arrow color is correctly show in white but the bullets are black on active and grey in color when it is in-active. Did I get the css wrong? How can I change the color on bullets?
- The topic ‘Change the pagination bullets color on image slider’ is closed to new replies.