Posted by Sean on 12/24/07 07:52
On Sun, 23 Dec 2007 22:10:27 -0800, Dave Kelly wrote:
> How do I keep the main division from wrapping around the navigation
> division?
>
> Go here to see my problem.
> http://www.texasflyfishers.org/flytying/Receipe.html
>
> TIA
> Dave
I would specify a static width of you nav div and set the nav's height to
100%.
#navigation {
width: 200px;
height: 100%;
}
Now you have a constant width going down the entire page.
[Back to original message]
|