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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help needed on frames

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hi could any one plz give me a script on frames i have done this <FRAMESET cols='100%,*' BORDER='0' FRAMEBORDER='0' FRAMESPACING='0' frameset rows='100%,*'>
<FRAME SRC='' NAME='mainframe' FRAMEBORDER='0' NORESIZE='noresize' scrolling='auto'>
<FRAME FRAMEBORDER='0' SCROLLING='NO' NORESIZE='noresize'>
</FRAMESET>
but i want the frame to be furthur down the page as this puts it at the top of the page could anyone please help thanks alot
Rob
 
maybe you need a frameset inside the frameset like this?

Code:
<frameset cols=&quot;80,*&quot; frameborder=&quot;NO&quot; border=&quot;0&quot; framespacing=&quot;0&quot;> 
  <frame name=&quot;leftFrame&quot; scrolling=&quot;NO&quot; noresize src=&quot;left.html&quot;>
  <frameset rows=&quot;80,*&quot; frameborder=&quot;NO&quot; border=&quot;0&quot; framespacing=&quot;0&quot;> 
    <frame name=&quot;topFrame&quot; scrolling=&quot;NO&quot; noresize src=&quot;top.html&quot; >
    <frame name=&quot;mainFrame&quot; src=&quot;main.html&quot;>
  </frameset>
</frameset>



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top