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/

photo 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

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -