Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] How to add rounded corners to carousel slide Reply To: [Solved] How to add rounded corners to carousel slide

#180880
Paulie_D
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 
}