html - Text not in element -
i'm making slider bootstrap slider, , when try add text on controllers, text display's on left, when elements on center.
live demo: http://povilasc.lt/shop/
background changed see text (1 , 2)
html:
.carousel-indicators { text-align: center; } .carousel-indicators li { width: 20px; display: inline-block; height: 20px; line-height: 20px; font-size: 12px; padding: 0; margin: 2px; color: #fff; border: 0; border-radius: 0; background-color: #222; text-align: center; }
<ol class="carousel-indicators"> <li data-target="#carousel-2" data-slide-to="0" class="active">1</li> <li data-target="#carousel-2" data-slide-to="1">2</li> </ol>
in safari build in element inspector shows me, .carousel-indicators li have style "text-indent: -999px;" applied.
add .carousel-indicators li style text-indent: 0px; , should work.
best regards.
Comments
Post a Comment