PDA

View Full Version : Frames Border invisible


Webster
08-19-2002, 09:50 PM
I have a multiple frame main page. I have set the frameborder to "no". I even tried "0". The frameborder still shows up. Can I make it invisible so that as the color of the background changes, the frameborder is not there, and the color touches the other frames background.

Thanks.

Webster

I have the following:

<FRAMESET ROWS="135,*">
<FRAME name = "NavBar" scrolling = "no" frameborder="no" noresize SRC="NavBar.html">
<FRAMESET COLS="155,*">
<FRAME name = "Products" scrolling = "auto" frameborder="no" noresize SRC="Frame2.html">
<FRAME name = "ItemPage" scrolling = "auto" frameborder="no" noresize SRC="Splash.html">
</FRAMESET>
</FRAMESET>

<NOFRAMES>

dk01
08-19-2002, 10:16 PM
<FRAMESET ROWS="135,*">
<FRAME name = "NavBar" scrolling = "no" frameborder="no" framepadding="no" framespacing="no" noresize SRC="NavBar.html">
<FRAMESET COLS="155,*">
<FRAME name = "Products" scrolling = "auto" frameborder="no" framepadding="no" framespacing="no" noresize SRC="Frame2.html">
<FRAME name = "ItemPage" scrolling = "auto" frameborder="no" framepadding="no" framespacing="no" noresize SRC="Splash.html">
</FRAMESET>
</FRAMESET>


Try that. Haven't used frames for a long time. Can't remember if it goes in the frame tag or frameset tag.
-dk

Webster
08-19-2002, 10:30 PM
Still see the frame border. In my text editor, the framepadding appears to be possibly incorrect. It doesn't indicate it as a normally recognized command. I wonder if it is correct, because the frame border is still there.

Webster

Webster
08-19-2002, 11:23 PM
Here is the fix.

Thanx for your reply dk01.
I knew that if I worked on it I would get to it...along with the internal help here at WCE form JavaGlxy...

<FRAMESET ROWS="135,*" scrolling = "no" frameborder="0" framespacing="0" border="0" framepadding="0">
<FRAME name = "NavBar" noresize SRC="NavBar.html">
<FRAMESET COLS="155,*" scrolling = "no" frameborder="0" framespacing="0" border="0" framepadding="0">
<FRAME name = "Products" noresize SRC="Frame2.html">
<FRAME name = "ItemPage" noresize SRC="Splash.html">
</FRAMESET>
</FRAMESET>

Webster

dk01
08-20-2002, 07:21 AM
Yeah I was wondering if you had to just pop it into the frameset. Glad I could help a little.
-dk