Log in

View Full Version : stationary nav with scrolling content?



gun
02-15-2010, 04:31 PM
I'm pretty new to web design and I'm trying to have a stationary column of navigation alongside a scrolling column of content, as seen here (http://labpartners-sf.blogspot.com/search/label/LAB%20NOTES).

Any advice? I would certainly appreciate a heads-up on how to start this page. Thanks.

Nile
02-15-2010, 05:33 PM
Well... I would have html like this:


<div id="right">
navigation & logo
</div>
<div id="left">
content
</div>

And then either have the left haev a specific height and give it overflow: auto, ro give right a fixed position;
Good luck.