View Full Version : Frame Border Help


TBennettcc
06-12-2003, 04:51 PM
Hello, all! My name is Tim, and I'm making a website for a friend. I have recently discovered how to put frames on more than one page, and therefore come up with an infinite amount of different layouts. Anyways, on to the question...

I have made many frames pages before. I have also successfully takes out the frameborder and framespacing before. However, now it doesn't want to work. I have put the tags in as shown

------------------------------------------------------------------------------------

<HTML>

<FRAMESET COLS=20%,60%,20%>
<FRAME SRC="Left.html" NAME="left" border=0 frameborder=0 framespacing=0 NORESIZE SCROLLING="NO">
<FRAME SRC="Center.html" NAME="center" border=0 frameborder=0 framespacing=0 NORESIZE SCROLLING="NO">
<FRAME SRC="Right.html" NAME="right" border=0 frameborder=0 framespacing=0 NORESIZE SCROLLING="NO">
</FRAMESET>

</HTML>

------------------------------------------------------------------------------------

and instead of doing a disappearing act, the borders have changed to a small white line, about 1 mm thick. I find this very interesting, as this has never happened to me before. I have tried putting " around the 0's, and with out the ". I have tried it with and without the FRAMEBORDER and FRAMESPACING tags in full caps and full lowercase. Nothing has worked. If anybody has a suggestion, it would be greatly appreciated. Thank you for your time.

pb&j
06-12-2003, 04:58 PM
try putting BORDER="0" into your FRAMESET tag.

TBennettcc
06-12-2003, 05:03 PM
Wow. That worked. Thanks. I never even thought of that.