html - Change arrow colors in Bootstraps carousel - Stack Overflow

PHOTO EMBED

Tue Oct 03 2023 15:46:16 GMT+0000 (Coordinated Universal Time)

Saved by @destinyChuck #css

.carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 100px;
  width: 100px;
  outline: black;
  background-size: 100%, 100%;
  border-radius: 50%;
  border: 1px solid black;
  background-image: none;
}

.carousel-control-next-icon:after
{
  content: '>';
  font-size: 55px;
  color: red;
}

.carousel-control-prev-icon:after {
  content: '<';
  font-size: 55px;
  color: red;
}
content_copyCOPY

https://stackoverflow.com/questions/46249541/change-arrow-colors-in-bootstraps-carousel