Results 1 to 2 of 2

Thread: Help requested from a CSS Expert!

  1. #1
    Join Date
    Nov 2009
    Posts
    15
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Help requested from a CSS Expert!

    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

  2. #2
    Join Date
    Nov 2006
    Location
    chertsey, a small town 25 miles south west of london, england.
    Posts
    1,920
    Thanks
    2
    Thanked 267 Times in 262 Posts

    Default

    Hi there iflyjetz,

    and a warm welcome to these forums.

    try changing this...
    Code:
    
    #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...
    Code:
    
    #content_wrapper{
    	width: 980px;
    	background-repeat: repeat-x;
    	background-color: #fff;
    	background-image: url(../images/content_header.png);
    	overflow:hidden;
    	height:1%;
    }
    
    coothead

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •