Center text with fixed height
HTML
<div class="logo-holder">
<div class="content-center text-center">NO LOGO UPLOADED</div>
</div>
CSS
.logo-holder{
position: relative;
height: 150px;
border:1px solid black;
}
.content-center{
position: absolute;
height: 20px;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin:auto;
}
.text-center{
text-align: center;
}