PDA

View Full Version : Frames leaving small gap where scrollbars would be


snake9284
04-03-2004, 12:27 AM
Hi everyone,

I'm relatively new to webpage design and I am having a problem with a page that is comprised of two frames: one vertical along the left for navigation and one horizontalalong the top for the page name. The problem that I am having is that where the two frames meet and where the page that displays in the larger frame that makes up the bulk of the page meet, there is a thin white border that goes around the outside of the frames. I can't seem to figure out how to get this to disappear...any ideas? Here is the code from the frame page.<html>
<title>Web Based Reports</title>

<base target = "body">
<head>

<frameset cols="12%,*" >
<frame name="links" src="http://forum.giantpa.aholdusa.com/uploads/SSSReport/Reports/links.cfm" scrolling="no" frameborder="0" framespacing="0" BORDERCOLOR="#B4CCF0" noresize>
<frameset rows="10%,*" >
<frame name="heading" src="http://forum.giantpa.aholdusa.com/uploads/SSSReport/Reports/Heading.html" scrolling="no" frameborder="0" framespacing="0" BORDERCOLOR="#B4CCF0" noresize>
<frame name="body" src="" marginwidth="10" marginheight="10" scrolling="no" frameborder=0 framespacing="0" noresize>
</frameset>
</frameset>
</head>
<body>
</body>
</html>

snake9284
04-03-2004, 04:03 AM
I figured out why I had the gaps.



<title>Web Based Reports</title>

<base target = "body">
<head>

<frameset cols="12%,*" frameborder="0" >
<frame name="links" src="http://forum.giantpa.aholdusa.com/uploads/SSSReport/Reports/links.cfm" scrolling="no" noresize>
<frameset rows="10%,*" >
<frame name="heading" src="http://forum.giantpa.aholdusa.com/uploads/SSSReport/Reports/Heading.html" scrolling="no" noresize>
<frame name="body" src="" " scrolling="no" noresize>
</frameset>
</frameset>
</head>
<body>
</body>
</html>