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 ><>
Bookmarks