View Full Version : White borders/margins


Loden
04-25-2003, 01:57 AM
I'm setting up frames on my website, and I'm having a problem with borders of white around the frames next to the edge of the screen. It's like a margin around by entire frame set. There's also a white strip between the frame on the left side and the frame on the top side. This is the HTML I have so far:

<html>
<head>
<title>Flotsam and Jetsam</title>
</head>
<frameset rows="245,*" border=0 frameborder=0 framespacing=0 marginwidth="0">
<frame src="dnatop.jpg" NAME="top"scrolling="no">
<frameset cols="220,*" border=0 frameborder=0 framespacing=0 marginwidth=0>
<frame src="dnaleft-copy.jpg" NAME="left" scrolling="no">
<FRAME SRC="home.html" NAME="content" SCROLLING=AUTO RESIZE=NO>
</frameset>
</frameset>
<body>
</body>
</html>

I'd appreciate it if someone could help me, if you even know what I'm talking about. Tell me if you need clarification.

Alcy
04-25-2003, 03:06 AM
<frame src="home.html" name="content" scrolling="no" marginwidth="0" marginheight="0">

If that doesn't work, set the margins of home.html
<body topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">

Loden
04-25-2003, 03:16 AM
Thanks, but I figured it out. I had to use the images I wanted as frames as backgrounds in html files, then use those files as frames. Weird.