I'm working with 3 Frames on a web-page: (top) Top.html, (left)
Navigation.html, and (right) "Content" which contains varying html pages
based on the (left) Navigation Selection - the problem that I'm having is
that each frame has a (approx.) 2 pixel border around it... I want the
frames to blend seamlessly on the page. I'm not sure How and Where to set
the Border attribute to 0 - is it in the Frameset Definition (which I
thought I took care of with frameborder="0") or in the actual html pages
that populate the Frames? If so, where do I include the attribute?
I've included the frame html below:
Thanx in advance.
Litron.
-----------------------
<HTML>
<HEAD>
<TITLE>Arbitrary Name....</TITLE>
</HEAD>
<FRAMESET rows="230, *" frameborder="0">
<frame src="Content\Top.html" scrolling="no" marginheight="0"
marginwidth="0" noresize>
</FAMESET>
<FRAMESET cols="220, *" frameborder="0">
<frame src="Content\Navigation.html" scrolling="no" marginheight="0"
marginwidth="0" noresize>
<frame src="Content\Home.html" name="content" marginheight="0"
marginwidth="50" noresize>
</FAMESET>
<NOFRAMES>
...........Blah, Blah, Blah!....................................
</NOFRAMES>
</HTML>
> the problem that I'm having is
> that each frame has a (approx.) 2 pixel border around it...
What browser?
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
In another NG, someone suggested adding the framespacing="0" to my Frameset
tag, eg.
<FRAMESET cols="220, *" frameborder="0" framespacing="0">
which has solved the problem in IE6, but I haven't tested the pages with
other browsers yet.....
Litron
----------------------------------
"Evertjan." <exjxw.ha...@interxnl.net> wrote in message
news:Xns95606493...@194.109.133.29...