@naxtra
Thanks for posting that screenshot.
@Jeff
1) The "Click Here To View At YouTube" & "Click Here To View At Dailymotion" seems to be on all videos not just that one.
2) For your 2 column layout problem try this:
CSS:
/*
********************
2 Column Layout
********************
*/
#bodywrapper{
height: 100%;
margin: 0px auto;
margin-top: 10px;
margin-bottom: 10px;
width: 960px;
}
#container {
width: 960px;
}
#main-wrapper {
display: inline;
float: left;
width: 695px;
}
#sidebar-wrapper {
float: right;
width: 250px;
}
#content {
width: 680px;
margin: 0px auto;
padding: 5px;
}
#sidebar-content {
padding: 5px;
}
.clear {
clear: both;
}
xhtml
<!--Start Body Wrapper-->
<div id="bodywrapper">
<!--Start Container-->
<div id="container">
<!--Start Main Wrapper-->
<div id="main-wrapper">
<div id="content">
<!--Start Content-->
Main Content Here
<!--End Content-->
</div>
</div>
<!--End Main Wrapper-->
<!--Start Sidebar Wrapper-->
<div id="sidebar-wrapper">
<div id="sidebar-content">
<!--Start Sidebar Content-->
Sidebar Content Here
<!--End Sidebar Content-->
</div>
</div>
<!--End Sidebar Wrapper-->
</div>
<!--End Container-->
</div>
<!--End Body Wrapper-->
<!--Start Clearer-->
<div class="clear"></div>
<!--End Clearer-->
Also no offense but your code is not xhtml valid, I am sorry but am a little crazy about having clean code

. I did see some things that could be causing problems since the code is invalid.
TIP: If you find a problem with something visually it's normally the code reading wrong

or a cross browser issue
One last thing awesome footer

:
Works best with the Firefox web browser, as it has superior support for the web standards which Mvideos utilises. Firefox is free of charge!
