Re: [css-d] absolute div growth problem

2005-07-29 Thread Zoe M. Gillenwater
Michael Landis wrote: For more information on 2-column layouts, feel free to check out the Wiki: http://www.westga.edu/~www/projects/library/index2.html I think the wrong link got pasted there. :-) Michael meant this: http://css-discuss.incutio.com/?page=TwoColumnLayouts Zoe -- Zoe M. G

Re: [css-d] absolute div growth problem

2005-07-28 Thread Michael Landis
Zoe wrote (about http://www.westga.edu/~www/projects/library/index2.html): > Don't use absolute positioning for any of those blocks. Instead, use a > two-column float layout. Leave your quickLinks div floated left, but > then add a new div after it that wraps around all the stuff in the right >

Re: [css-d] absolute div growth problem

2005-07-28 Thread Zoe M. Gillenwater
madison wrote: ...but I would like the "News and Events" div to grow without overlapping the footer... http://www.westga.edu/~www/projects/library/index2.html the problem is that particular div is position:absolute, because I can't figure a good way of setting up this layout without it. D

Re: [css-d] absolute div growth problem

2005-07-26 Thread Marcelo De Polli
Unless I'm terribly mistaken, you wouldn't be able to use position: absolute in the "News and Events" div if you want its contents to push the lower div. One thing you can do is use position: relative in the bigger divs (masthead, content, footer) and position: absolute in the smaller element

[css-d] absolute div growth problem

2005-07-26 Thread madison
I'm trying to convert a table layout... http://www.westga.edu/~library/depts/comms/wuac/redesign_2005/web/mockups/mockup_2a/body_test17e.html ...to a CSS layout... http://www.westga.edu/~www/projects/library/ ...but I would like the "News and Events" div to grow without overlapping the foot