Log in

View Full Version : Help requested from a CSS Expert!



iflyjetz
11-10-2009, 10:59 AM
Hi Guys,

I'm looking for your help!

I have spent hours trying every conceivable method, searched google and tried all methods of clearing floats etc but can't seem to get what I need to work, so would really apprecaite your help!

My request is as follows.

#Content_wrapper encloses #columnRight and #content_body
#Content_wrapper to expand dynamically (height) to enclose whatever content is in #columnRight and #content_body (Whichever is longest!)

#columnRight_module to expand to the bottom of #Content_wrapper due to background colour!

So far I've been getting scrollbars and all sorts of errors which I obviosuly dont need.

I hope you understand what I mean!

link: http://getmeonline.ie/fitzsimons/index1.html

Kind Regards
iflyjetz

coothead
11-10-2009, 02:42 PM
Hi there iflyjetz,

and a warm welcome to these forums. ;)

try changing this...


#content_wrapper{
width: 980px;
background-repeat: repeat-x;
background-color: #FFF;
background-image: url(../images/content_header.png);
clear: both;
overflow: auto;
height: inherit;
}

...to this...


#content_wrapper{
width: 980px;
background-repeat: repeat-x;
background-color: #fff;
background-image: url(../images/content_header.png);
overflow:hidden;
height:1%;
}

coothead