views:

16

answers:

2

hey..

i'm working on my html project, and everything is going well.

now i'm doing the same project with framesets, but i descovered that the page in a frame set won't scroll as a whole page (you can only scroll each frame at a time)..

how can i solve this??

please help

+1  A: 

Don't use frames! I know this is a horrible answer to your question, but believe me - loads of peeps would agree!

If you can, use plain ol' CSS and NO FRAMES.

Also, there is rogue synchronised scrolling Javascripts floating around on the Interwebs - But I wouldn't use them. People who have Javascript off won't get that effect.

Neurofluxation
+1  A: 

It sounds like what you want is perhaps a static design around your scrolling content, correct?

If so, what you should actually do is make a single page (not a frameset) with your desired DIV layout (a good example can be found here), and then have your content div use CSS that will allow it to scroll (e.g. overflow:scroll;).

Hope this helps.

Lance May
Voted up! Primarily because I prefer your answer to mine - I was being lazy. ^_^
Neurofluxation
Voted your comment up because that's awesome. ;)
Lance May