Quote Originally Posted by Stuff4Toys View Post
That's Pthththth
LOL

I only changed the right column to be equal to the left (I thought)

I've been at this for 20+ years and still have brain freeze from time to time.

Left columns are still at 165 (right?)
I increased the right column from 150 to 165 = 15

This hurts both of us. Where do I have to add the 15?

This is what I see in the original css:
HTML 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  */
}
* html #navColumnTwo {
 margin-right: -170px !important; /* Fixes IE6 Issue */
}
/* end wrappers - page or section containers*/
So the only change I made was
HTML Code:
padding-right: 150px; /* Our right column width */
to 165 and
HTML Code:
#navColumnTwo {
 float: right;
 margin-right: -150px;
to 165

Which other setting needs the added 15? I know this is simple for you, being the stylesheet expert and all, but give a guy a break, please. {BSG}
JOhn ><>

Add 15px EVERYWHERE. See how it starts at 165px ALREADY for the left side? That is because there is built in padding. Just like before, I told you to add 40px to 165px, now you add 15px to 165px.

To be absolutely clear. Wherever you see 165px in the original stylesheet, change it to 180px, wherever you see 150px, change it to 165px. Wherever you see 170px, change it to 185px.