css - Aligning Text Center of Div -


hello small problem here im struggling fix. tried vertical-align no joy , have ran out of ideas.

you can see why frontpage blocks here

the title below picture sitting towards top of area when title takes 1 line. hoping make appear in middle of area between picture , group title below. suggest anything?

thanks

    ul.views-fluid-grid-items-center li.views-fluid-grid-item {         background: none repeat scroll 0 0 black;         position: relative;     }      li.views-fluid-grid-item .views-field-title {         padding: 0 4px;     } 

as marked, black part in website fixed in height, use display: table-cell along vertical-align: middle , go

li.views-fluid-grid-item .views-field-title {     color: #aaaaaa;     display: table-cell;     height: 40px; /* fix appropriate height here */     vertical-align: middle; } 

Comments

Popular posts from this blog

node.js - Bad Request - node js ajax post -

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -