Safari, Frames and HTML problems...

liunx

Guest
I'm creating a resume webpage that requires three frames to complete a seamless menu. I've tested the page on Explorer and Netscape with no problems but when it came to Safari I found a few glitches. For some reason the middle/right frame will not line up properly (its off by one pixel). There also appears to be a one pixel halo (white outlining border) on the same frame as well as the bottom. I've tweaked the code numerous times with no such luck. <br />
<br />
Is this a safari glitch or do I have a HTML hiccup?<br />
<br />
-Jayson<br />
<br />
<br />
<br />
Check it out (remember, this is only a test): <br />
<!-- m --><a class="postlink" href="http://home.earthlink.net/~funnykitty/Resume/StartHere.html">http://home.earthlink.net/~funnykitty/R ... tHere.html</a><!-- m --><br />
<br />
<br />
<br />
Also here's the code I've been using for the frames:<br />
<br />
<HTML><HEAD><TITLE>Jayson Spirtos - Resume Site</TITLE><br />
<br />
<FRAMESET ROWS="155,285,109" BORDER="0"><br />
<br />
<FRAMESET COLS="732" BORDER="0"><br />
<FRAME SRC=http://www.webdeveloper.com/forum/archive/index.php/"Top.html" NAME="top" SCROLLING="NO" FRAMEBORDER="0" MARGINHEIGHT="0"><br />
</FRAMESET><br />
<br />
<FRAMESET COLS="115,551,66" BORDER="0"><br />
<FRAME SRC=http://www.webdeveloper.com/forum/archive/index.php/"Left.html" NAME="left" SCROLLING="NO" FRAMEBORDER="0" MARGINHEIGHT="0"><br />
<FRAME SRC=http://www.webdeveloper.com/forum/archive/index.php/"Middle.html" NAME="middle" SCROLLING="auto" FRAMEBORDER="0" MARGINHEIGHT="0"><br />
<FRAME SRC=http://www.webdeveloper.com/forum/archive/index.php/"Right.html" NAME="right" SCROLLING="NO" FRAMEBORDER="0" MARGINHEIGHT="0"><br />
</FRAMESET><br />
<br />
<FRAMESET COLS="732" BORDER="0"><br />
<FRAME SRC=http://www.webdeveloper.com/forum/archive/index.php/"Bottom.html" NAME="bottom" SCROLLING="NO" FRAMEBORDER="0" MARGINHEIGHT="0"><br />
</FRAMESET><br />
</FRAMESET><br />
<br />
</HTML><!--content-->I think you need to familiarize yourself with KISS principle.<br />
There is no need to use popup windows and framesets to deliver a resume.<!--content-->
 
Back
Top