My carousel displays full page images, but I want the controllers to only appear when the mouse hovers over the specific area they are in, rather than appearing when the mouse is anywhere on the page.
.carousel .carousel-control {
visibility: hidden;
}
.carousel:hover .carousel-control {
visibility: hidden;
}
.carousel-control.left, .carousel-control.right {
background-image: none;
}
.carousel-control:hover {
visibility: visible;
}
I need assistance with removing the gradient from the third tag. Any help would be greatly appreciated.