Frames With No Borders

nike_guy_man's picture

They have: 840 posts

Joined: Sep 2000

Hello
Does anyone know how to make a page in frames with no border?
I've seen many sites with it, but have not been able to do that myself

They have: 11 posts

Joined: Oct 2000

Yep.

Oh, you want me to tell you? Oh, go on then...

You've got an HTML file similar to the following :

<FRAMESET cols="200,100%">

<FRAME src="menu.html" name="menuframe">
<FRAME src="homepage.html" name="contentframe">

</FRAMESET>
'

Add these bits of code :

border="0" frameBorder="no" frameSpacing="0"
'

to each line so that the above example would become :

<FRAMESET cols="200,100%" border="0"
frameBorder="no" frameSpacing="0">

<FRAME src="menu.html" name="menuframe"
border="0" frameBorder="no" frameSpacing="0">
<FRAME src="homepage.html" name="contentframe"
border="0" frameBorder="no" frameSpacing="0">

</FRAMESET>
'

That's what I always do...

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.