Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Frames border question

Status
Not open for further replies.

madHatter1

Technical User
Feb 27, 2003
54
GB
Hello

I have the following:

<FRAMESET ROWS=&quot;100,*&quot;>
<frame src=&quot;top.html&quot; name=&quot;top&quot; SCROLLING=&quot;NO&quot;>


<FRAMESET COLS=&quot;140,*&quot;>
<FRAMEBORDER=&quot;NO&quot; BORDER=&quot;0&quot;
FRAMESPACING=&quot;0&quot;>

<frame src=&quot;menu.html&quot; name=&quot;left&quot; SCROLLING=&quot;NO&quot;>
<frame src=&quot;main.html&quot; name=&quot;right&quot; SCROLLING=&quot;AUTO&quot;>

</frameset>
</frameset>

It is not supposed to generate a border, but in fact, it does.

Can anybody suggest anything, please.

Hatter
 
frameborder is not a tag. Try:

<FRAMESET ROWS=&quot;100,*&quot; border=&quot;0&quot; frameborder=&quot;0&quot;>
<frame src=&quot;top.html&quot; name=&quot;top&quot; SCROLLING=&quot;NO&quot;>
<FRAMESET COLS=&quot;140,*&quot;border=&quot;0&quot; frameborder=&quot;0&quot;>
<frame src=&quot;menu.html&quot; name=&quot;left&quot; SCROLLING=&quot;NO&quot;>
<frame src=&quot;main.html&quot; name=&quot;right&quot; SCROLLING=&quot;AUTO&quot;>
</frameset></frameset>

Clive
 
Here ya go :-D

<frameset rows=&quot;100,*&quot;>
<frame src=&quot;top.html&quot; name=&quot;top&quot; scrolling=&quot;no&quot; frameborder=&quot;no&quot; border=&quot;0&quot;>
<frameset cols=&quot;140,*&quot; framespacing=&quot;0&quot;>
<frame src=&quot;menu.html&quot; name=&quot;left&quot; scrolling=&quot;no&quot; frameborder=&quot;no&quot; border=&quot;0&quot;>
<frame src=&quot;main.html&quot; name=&quot;right&quot; scrolling=&quot;auto&quot; frameborder=&quot;no&quot; border=&quot;0&quot;>
</frameset>
</frameset>

Rick

-----------------------------------------------------------
RISTMO Designs
Arab Church
 
Hello Rick, Clive, and Ristmo

Many thanks for your scripts! The site now looks like I wanted.

Best wishes

Hatter

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top