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!

How do you create the appearence of a continuous banner?

Status
Not open for further replies.

gus121

Technical User
May 9, 2002
298
GB
How do you create the appearence of a continuous navigation banner while making the web page scroll as one single web page?
Do you nest a frameset within anouther to create the effect?

Or is there a better way?
Please Help.
 
Do you mean a static navigation menu at the top of your page??
If so then there are probably two ways to do it. Either with a simple frame on top which holds your navigational info or else a handy static menu DHTML or Java Script which you will find on
Is that any help?



É

endamcg-logo1b.gif

 
here is some sode you could use of you wanted to use frames:

<frameset rows=&quot;100,*&quot; frameborder=&quot;0&quot;>
<frame name=&quot;top_frame&quot; src=&quot;top.html&quot; scrolling=&quot;no&quot; noresize frameborder=&quot;0&quot;>
<frame name=&quot;bottom_frame&quot; src=&quot;bottom.html&quot; frameborder=&quot;0&quot;>
</frameset>

the &quot;100,*&quot; part sais the sizes of the frmaes, in this case, the top one is 100px hight, and the bottom one fills the rest of the page. if you want colloms rather then rows, change is to cols.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top