Ok let me start by giving a brief detailed explanation of my problem I've come across.I have a 19 inch screen for my pc,I also run a ps3 on the internet.The problem I've run into I have never seen before now with any iframe though it is a problem none the less and I can not get it to correctly function.On my screen when I create the iframe itself and give it the parameters necessary I show it as lining up exactly on function as to where it should be in the page.However when a friend of mine loads it on his 22 inch screen the iframe is bouncing off to the left and falling well out of place.Another friend is loaded it and it bounced off to the right when I attempted to fix it for the 22 inch screen.What I am trying to find out is why on a different size screen is it not staying in the position it is assigned to stay in.If anyone can help me it would greatly be appreciative and greatly respected.Even if it is just a way to auto center the iframe so it loads on any screen and any browser automatically falling into the proper proportions of where it should be.The first code is the index page.The second is the AsY Iframe image hotlinked top left.The third set of code is the main content iframe.Sorry if this seems a difficult problem to anyone,any help would be great.
Akira
Page link = http://asytest.comze.com/
Code
-index-
<!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" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body,td,th {
color: #FFF;
}
body {
background-color: #000;
background-image: url(sitebg.png);
background-position: top center;
background-repeat: no-repeat;
}
-->
</style></head>
<body>
<iframe name="Home" src="home.html" frameborder="0" allowtransparency="true" width="220" height="68" marginheight="0" marginwidth="0"style="position:absolute;top:16px;left:280px;"></iframe>
<iframe name="content" src="home2.html" frameborder="0" allowtransparency="true" width="858" height="796" marginheight="0" marginwidth="0"style="position:absolute;top:102px;left:280px;"></iframe>
</body>
</html>
________________________________________________________________________________
____________
-asylogo-
<!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" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body,td,th {
color: #FFF;
}
body {
background-color: #000;
}
-->
</style></head>
<body>
<img src="AsYLogo.png" width="220" height="68" border="0" align="top" usemap="#Map" />
<map name="Map" id="Map">
<area shape="rect" coords="2,0,220,72" href="home2.html" target="content" />
</map>
</body>
</html>
________________________________________________________________________________
____________
-content-
<!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" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body,td,th {
color: #FFF;
}
body {
background-color: #000;
background-image: url(content.png);
}
-->
</style></head>
<body>
</body>
</html>
