Hello @fevcap,
Thanks for writing to us.
In order to format the pagination dots please add this custom CSS code on the pagination element —>Customize —>Element CSS.
/* pagination hover */
$el.x-slide-pagination li:hover {
border: 2px solid #ffeb3b;
background-color: #ffc107;
}
/* pagination inactive */
$el.x-slide-pagination li {
border: 2px solid #2196f3;
background-color: transparent;
}
/* pagination active */
$el.x-slide-pagination li.is-active {
border: 2px solid #ffc107;
background-color: #ffc107;
}
Please feel free to change the color code as per your design. The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.In case if you have no idea about coding you can subscribe to One where customization questions are answered.
Hope it helps.
Thanks