I'm trying to embed a website in one of my own. Simple reason is the site is hosted and run for us by some company someplace and I don't want to wait. So anyway here's the site I'm posting
http://www.kevingraham.com/legacylakes/ad1/index.html
If you view this in chrome or firefox you'll see how it's supposed to work.
In IE 7 or IE 8 http://www.legacylakes.com doesn't display. Just a blank white screen though you can see on the status bar of IE the various components loading.
I can replace the IFRAME SRC with just about any other site on the Internet and it works. Just not ours. WTF? Anyone? Anyone? Beuler?
Index code is pretty straight forward.
--------------------------------------------
IFrame div code is here
------------------------------------------
HTML Code:
<div id="apDiv1">
<iframe src ="http://www.legacylakes.com" frameborder="0" width="1000" height="1000" >
<p>If you can see this text, your browser does not support iframes.
<a href="http://www.legacylakes.com">View the Legacy Lakes Website here</a> within your browser.</p>
</iframe>
</div>
-------------------------------------------------
Complete Index.html Here
-------------------------------------------------
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> -->
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
<title>Legacy Lakes Real Estate</title>
<link href="CenterPageTemplate.css" rel="stylesheet" type="text/css" media="all" />
<style type="text/css">
<!--
body {
background-image: url();
background-repeat: no-repeat;
background-color: #000;
}
#apDiv1 {
position:absolute;
width:960px;
height:1000;
z-index:1;
left: 1px;
top: 57px;
background-color: #FFFFFF;
}
#apDiv2 {
position:absolute;
width:960px;
height:60px;
z-index:12;
left: 1px;
top: 1px;
}
#apDiv3 {
position:absolute;
width:84px;
height:101px;
z-index:11;
left: 971px;
top: 35px;
}
#apDiv4 {
position:absolute;
width:83px;
height:100px;
z-index:13;
top: 35px;
left: 11px;
}
-->
</style>
<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
</head>
<body>
<div id="wrapper">
<div id="apDiv4">
<object id="FlashID2" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="83" height="98">
<param name="movie" value="swf/bragg.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<param name="swfversion" value="6.0.65.0" />
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
<param name="expressinstall" value="Scripts/expressInstall.swf" />
<param name="LOOP" value="false" />
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="swf/bragg.swf" width="83" height="98">
<!--<![endif]-->
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<param name="swfversion" value="6.0.65.0" />
<param name="expressinstall" value="Scripts/expressInstall.swf" />
<param name="LOOP" value="false" />
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
<div>
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</div>
<!-- <img src="http://tycoontalk.freelancer.com/images/backgroundblur-960.jpg" width="960" height="960" /> -->
<div id="apDiv2"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="960" height="60" id="CC6375414" align="middle"><param name="movie" value="textform.swf"/><param name="quality" value="high" /><param name="FlashVars" VALUE="xmlfile=textform.xml&w=960&h=60"/><param name="scale" value="noscale" /><param name="salign" value="lt" /><param name="bgcolor" value="#ffffff" /><param name="wmode" value="transparent" /><embed src="textform.swf" FlashVars="xmlfile=textform.xml&w=960&h=60" quality="high" bgcolor="#ffffff" width="960" height="60" name="CC6375414" wmode="transparent" scale="noscale" salign="lt" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object></iframe></div>
<div id="apDiv1">
<iframe src ="http://www.legacylakes.com" frameborder="0" width="1000" height="1000" >
<p>If you can see this text, your browser does not support iframes.
<a href="http://www.legacylakes.com">View the Legacy Lakes Website here</a> within your browser.</p>
</iframe>
</div>
</div>
<script type="text/javascript">
<!--
swfobject.registerObject("FlashID2");
//-->
</script>
</body>
</html>
------------------------------------------------------------
Last edited by chrishirst; 01-21-2011 at 05:15 PM..
|