On 2/2/06, Jared Lyon <[EMAIL PROTECTED]> wrote: > Hi all, I seem to be having a bit of a problem getting a div to fill the > width of the screen. Here's the trouble page: > http://www.rit.edu/upub/new/contact_us2.html
the markup is not conducive to a fixed-fluid layout right now, and you have both a stylesheet and inline styles, which makes things tough to edit. You want: <div id=container> <div id=sitenav> </div> rest of content </div> Then you float the sidebar left and the rest of the content should fill the rest of the space around it. I think you can even give the container margin-left:(width of sitenav) and it will look the way you want it. -- -- Christian Montoya christianmontoya.com ... rdpdesign.com ... cssliquid.com ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
