On 1/14/06, Patrick Roane <[EMAIL PROTECTED]> wrote:
> 3. There must be a css: parameter I can adjust to
> allow for the box to stretch vertically to accomidate
> the text... I'm just not sure which one.

This is never going to work:

#leftcol {
  position: absolute;
  color:#666;
        float:left;
        font:0.7em normal Arial, Helvetica, sans-serif;
        padding-right:10px;
        top: 200px;
        left: 0px;
  z-index;
        width:230px;    
}

The content of #leftcol should contain the logo image, so that it is
all one column and you can float it left without have to apply any
position:absolute. Using position:absolute is obviously what is
breaking your layout and is making the text overflow the container.

I really don't see why you can't make the height of the container auto
to the contents, or apply overflow:scroll to the entire container
instead of just the middle column. Remove any absolute positioning in
the layout and do one of these two options and your problems should be
gone.
--
--
Christian Montoya
christianmontoya.com ... rdpdesign.com ... cssliquid.com
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to