Center text in veritcally. Example: http://www.carrefour.com.ar/content/servicios/la-plaza-de-tu-mascota/ text in the slider. Resource:http://stackoverflow.com/questions/9249359/is-it-possible-to-vertically-align-text-within-a-div
<div id="column-content">
<div>Nota |</div>
<span>yet another text content that should be centered vertically yet another text content that should be centered vertically</span>
</div>
#column-content{
display: table;
height: 65px;
width: 100%;
}
#column-content div {
vertical-align: middle;
display: table-cell;
width: 10%;
}
#column-content span {
display: table-cell;
vertical-align: middle;
width: 89%;
}