Quote Originally Posted by mediathing View Post
I just searched the css file and there is nothing regarding the left nav column?!? I can only alter the width of the right column, is that right? I made the right column say 155px in the css (i have it as 150px in admin) but same problem.

Pete
This chunk below is the only chunk that controls sidebox issues. NOW, if you make your sideboxes wider than 150px by any amount of pixels, you need to change ALL of the 165px's by that many larger, and ALL of the 150px's by that many larger, and that should take care of it.

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

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

#content {
	float: right;
	margin-right: -165px; /* 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: -150px; /* This negative margin-right value is in this example the same as the right column width. */
	position: relative; /* IE needs this  */
	}