The tricky part is that I need the content area to be as tall as the browser will allow, and then to add a scroll bar. I want to be able to always see the navigation on the left.
I also want the nav section to show as much of the background as possible, without showing so much that it adds a scroll bar.
How can I do this in CSS? It seems to me that if I want a scroll bar for the content section that I have to set a specific height. Is there a way of setting
I've noticed a bit of code in your stylesheet under #nav: height: 1168px;
Try setting this to 100% first off and see what happens. You've also set the height of the #content_pane section to 500px, try setting this to *px (I forget if this is correct syntax or not though).
Thanks for the quick reply. That didn't quite solve the issue.
setting the #nav height to 100% will make that section as tall as your browser is. If the user scrolls down, there will be unfilled space.
I tried setting the #content_pane to *px but that didn't do anything. I also tried 100% and that didn't do anything.
Bookmarks