I have 2 frames with the exact same document being called in each frame (for testing purposes), but one frame's contents are being shifted 10-15 px to the right:
The frameset source is:
<code>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>:
ustwurks v2</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset id="mainFrameset" frameborder="0" framespacing="0" frameborder="no" border="0" rows="*,30">
<frame id="mainFrame" src="testdefault.htm" frameborder="0" marginwidth="0" marginheight="0" scrolling="auto" noresize>
<frame id="cpanel" src="testdefault.htm" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" noresize>
</frameset>
<noframes>
<body>
Your browser does not support frames. Please find one that does (any browser built after the first Gulf War should do the trick).
</body>
</noframes>
</html>
</code>
Anyone got explanation for how I can get these two documents to line up??? Each frame is the EXACT same document, so what is causing the bottom frame's content to shift to the right like this? It makes no sense to me...
The frameset source is:
<code>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset id="mainFrameset" frameborder="0" framespacing="0" frameborder="no" border="0" rows="*,30">
<frame id="mainFrame" src="testdefault.htm" frameborder="0" marginwidth="0" marginheight="0" scrolling="auto" noresize>
<frame id="cpanel" src="testdefault.htm" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" noresize>
</frameset>
<noframes>
<body>
Your browser does not support frames. Please find one that does (any browser built after the first Gulf War should do the trick).
</body>
</noframes>
</html>
</code>
Anyone got explanation for how I can get these two documents to line up??? Each frame is the EXACT same document, so what is causing the bottom frame's content to shift to the right like this? It makes no sense to me...