Home › Forums › CSS › [Solved] How to add rounded corners to carousel slide › Reply To: [Solved] How to add rounded corners to carousel slide
August 27, 2014 at 12:00 pm
#180880
Member
The rounding is there but the background color(s) of the controls is hiding it.
Try adding this
.carousel-control {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 15%;
opacity: .5;
filter: alpha(opacity=50);
font-size: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0,0,0,0.6);
border-radius: 9px; <---- or whatever
}