Reputation: 1583
I'm trying to remove the pager in my ion-slides component. I tried all, but they still remain. How can I remove that? On the documentation nothing work. I spent 2 days in trying but nothing work.
Upvotes: 1
Views: 3816
Reputation: 156
add this code in your .css file if you are using ion-slides
.swiper-pagination-bullet{
background:white!important;
border-radius: 100%;
height: 17px;
width: 17px;
display: none;
}
Upvotes: 0
Reputation: 11201
You need to set the show-pager property to false.
<ion-slide-box show-pager="false">
Upvotes: 4