954,598 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Youtube and HTML

Hey Guys, i am having trouble placing this image over a youtube video, I want the .youtube_hat to be displayed over the youtube video in the top corner. So could anyone please help me!!

The HTML

<div class="youtube_area">
        	<div class="youtube_hat"></div>
        	<div class="youtube">
            	<iframe title="YouTube video player" width="450" height="258" src="http://www.youtube.com/embed/B-1Xqnx-KCw?rel=0" frameborder="0" allowfullscreen></iframe>
            </div>
        </div>


The CSS

.youtube_hat {
	position: absolute;
	margin: -75px 0 0 -72px;
	width: 210px; height: 157px;
	background: url(../img/youtube_hat.png) no-repeat top left;	
	z-index: 1;
}
.youtube_area {
	position: absolute;
	top: 227px;	
	left: 592px;
}
.youtube {
	position: absolute;
	width: 450px; height: 258px;
	z-index: 5;
}


Thanks for your help,
Marais

marases
Junior Poster in Training
87 posts since Sep 2010
Reputation Points: 21
Solved Threads: 7
 

Just a suggestion... but you could try float:right instead of position:absolute for the .youtube_hat css class.

schoolboy2010
Light Poster
41 posts since Jan 2010
Reputation Points: 10
Solved Threads: 1
 

In my opinion, try to style CSS more specifically. For example, instead of using

.youtube{}


try be more specific like

.youtube iframe{}
lps
Junior Poster
117 posts since Jul 2011
Reputation Points: 13
Solved Threads: 22
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: