'How can I change Bootstrap 5 carousel indicators into dots?
Solution 1:[1]
Just add this to your styles:
.carousel .carousel-indicators button {
    width: 10px;
   height: 10px;
   border-radius: 100%;
 }
Solution 2:[2]
Add this properties to CSS
.carousel-indicators [data-bs-target]{
    border-radius: 50%;
    width: 15px;
    height: 15px;
}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source | 
|---|---|
| Solution 1 | Bashid | 
| Solution 2 | marcos.efrem | 

