Click to See Complete Forum and Search --> : Frames, little gaps between them


MattC
01-19-2003, 05:52 PM
Good Morning (well it's morning here anyhow)

I am building a sit using frames and am having trouble with little gaps between them.

I have a framed menu bar, with a dark background, a framed header, with the same dark color border, and a white background framed body.

Between the menu bar and the header, I would like there to be no gap, but there is a small white gap(just a few pixels) that I can't get rid of.

I have played with the framesize of the header frame, but that does not help, (initialy there was a much larger gap because the header frame was bigger than it's content).

If anyone can help me with getting rid of this annoying little gap I would be most appreciative.

Attached is a copy of the offending code (if that helps)

Cheers

MC

swon
01-19-2003, 06:22 PM
and here it is 1.00 am!

here's your frameset:

<HTML>
<HEAD>
<TITLE>Back In Health Centres</TITLE>
<LINK REL="stylesheet" HREF="style_sheet_1.css">
<LINK REL="stylesheet" HREF="style_sheet_2.css">
</HEAD>

<FRAMESET rows="203,*" FRAMEBORDER="NO" border="0" FRAMESPACING="0">
<FRAME SRC="headframe.htm" NAME="head"
FRAMEBORDER="0" SCROLLING="No" NORESIZE>

<FRAMESET cols="130,*"FRAMEBORDER="NO" border="0" FRAMESPACING="0">

<FRAME SRC="homenav.htm" NAME="homenavbar" FRAMEBORDER="0"
SCROLLING="NO" NORESIZE>

<FRAME SRC="homebody.htm" NAME="homebody" FRAMEBORDER="0" SCROLLING="Auto"


</frameset>
</frameset>
</frameset>
<noframes>
<BODY>
</BODY>
</noframes>
</HTML>

and if there are still some spaces you can edit the body of the files by this: <body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">

hope that helps you!

MattC
01-19-2003, 06:39 PM
Thanks Swon

Top work at 0100!!!!

I had just worked out the BORDER attribute before I logged back on, but I did not know about the FRAMESPACING attribute.

I just love a simple fix!!

Thanks again

MC