
Originally Posted by
jettrue
Did you follow the instructions on adjusting the sidebox widths in the readme.txt to a "t"? The original left sidebox is 150px wide, but in the css, the original width used for the left sidebox section is 165px (to accommodate padding and such).
So you want a left sidebox that is 190px wide (40 pixels wider), so you'll need to increase the original value of 165px by 40 px more.
Please find the section in the readme on increasing sidebox width.
I thought I did. I even setup the liberty xstore template from scratch.
HTML Code:
* html #contentMainWrapper {
height: 100%;
}
.outer {
padding-left: 190px; /* 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: -190px; /* Same length as .outer padding-left but with negative value */
}
#content {
float: right;
margin-right: -190px; /* 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 */
}
* html #navColumnTwo {
margin-right: -190px !important; /* Fixes IE6 Issue */
}
/* end wrappers - page or section containers*/
What did I miss?