Quote Originally Posted by TBSM View Post
Hello again,
I am having difficulty's with the left side box. When a cart item is long enough it expands the widths of the colum and pushes it bellow the rest...

Code:
.outer {
	padding-left: 185px; /* Same width as margin-left for the float-wrap div */
	padding-right: 0x; /* Our right column width */
	}
	
.inner {
	width: 100%;
	}

.float-wrap {
	float: left;
	width: 97%;
	margin-left: -185px; /* Same length as .outer padding-left but with negative value */
	}

#content {
	float: right;
	margin-right: -185px; /* Same length as .outer padding-left but with negative value */
	width: 100%;
	line-height:1.6;
	position: relative; /* IE needs this  */
	}

.contentWrap{
	padding: 5px 0 5px 5px;
	}
	
#navColumnOne { 
	float: left;
	position: relative; /* IE needs this  */
	}
	
#navColumnTwo {
	float: right; 
	margin-right: -170px; /* This negative margin-right value is in this example the same as the right column width. */
	position: relative; /* IE needs this  */
	}
have i missed something
Link?