Link to home
Start Free TrialLog in
Avatar of DS928
DS928Flag for United States of America

asked on

Centering Text

Trying to center text horizontally.

The CSS
.item-thumbs .hover-wrap .overlay-img-thumb {
	position: absolute;
	top: 50%;
	margin: -16px 0 0 0;
	color: #FFFFFF;
	font-size: 32px;
	line-height: 1em;
	
	opacity: 1;
	filter: alpha(opacity=100);
}

Open in new window

The link
http://www.davidschure.com/Template/brushed/index.html


<!-- Video Sexy Face and Filter Name -->
                        	<li class="item-thumbs span3 video">
                            	<!-- Fancybox - Gallery Enabled - Title - Full Image -->
                            	<a class="hover-wrap fancybox-media" data-fancybox-group="video" title="Sexy Face" href="https://www.youtube.com/watch?v=THCHsaf_is0">
                                
                                	<span class="overlay-img"></span>
                                    <span class="overlay-img-thumb">Sexy Face</span>
                                </a>
                                <!-- Thumb Image and Description -->
                                <img src="_include/img/Videos/Sexy-960.jpg" alt="Sexy Face">
                            </li>
                        	<!-- End Video Sexy Face -->

Open in new window


.item-thumbs .hover-wrap .overlay-img {
	position: absolute;
	width: 100%;
	height: 100%;
	/*background: #DE5E60;*/
	/*background:#f8e45b;*/
	background:#1a29f3;
	
	opacity: 0.60;
	filter: alpha(opacity=60);
}

.item-thumbs .hover-wrap .overlay-img-thumb {
	position: absolute;
	top: 50%;
	text-align:center;
	/*margin: -16px 0 0 0;*/
	margin: -16px auto;
	color: #FFFFFF;
	font-size: 32px;
	line-height: 1em;
	
	opacity: 1;
	filter: alpha(opacity=100);
}

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of DS928
DS928
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of DS928

ASKER

I figured it out myself