I can see the problem in IE, looks like a missing /div. It is a missing </object> I would say,
you have (in source code)
Code:
<div id="headlinevideo">
<object width="480" height="295">
....
<embed src=
....
</embed>
</div>
It should look like this with closing /object before the /div:
Code:
<div id="headlinevideo">
<object width="480" height="295">
....
<embed src=
....
</embed>
</object>
</div>
hope it helps ..
____________________
you find me on Google+, Twitter and Facebook
(von: Joern)
Hier noch 2 weitere Ergebnisse dieses Threads:
Index.php Problem IE
30. Jul. 2010 (von: waywestmedia)
Hey all, First off, I've been lurking for about a year and this forum has been a GREAT source of knowledge. Now... onto the problem. This seems to only be happening in IE, all pages look fine in Firefox. Not…
Re: Index.php Problem IE :: Reply by waywestmedia
30. Jul. 2010 (von: waywestmedia)
Easy as that! Thank you so much for the quick reply. After making that post, I had a sneaking suspicion it was the video code that was throwing things off. Thanks again! Oh... Joern, can you remove the link to…