Similar Question:
What is the Optimal Method for Vertically Centering a Div with CSS?
.title_text_only{
position:absolute;
width:100%;
display:none;
z-index:9;
top:50%;
bottom:50%;
text-align:center;
color:#fff;
font-size:18px;
text-shadow: 1px 1px 1px #666;
}
Currently, it appears to not be functioning correctly. The top 50% does not align it vertically. It is slightly positioned towards the bottom. It seems like the top margin is set at 50%.