Re: Need continuity among all pages.

Originally Posted by
stevesh
Just so I understand, you want the right column to be outside the rest of the content ? Best way to do something like that, I think, is with absolute positioning in the stylesheet.. You have to be careful with how it displays on different screen resolutions, though.
If you don't want it way out there, you'll need to fiddle with this:
.leftBoxContainer, .rightBoxContainer {
margin: 0em 0em 4.0em .9em;
border: 0px solid #024B8A;
border-bottom: 3px solid #024B8A;
margin-top: -3.4em;
}
You could also simulate a floating right column using padding and borders properly.
Okay, here is a potential issue. I separated
".centerBoxWrapper" from its group.
/*list box contents*/
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {
margin: 1em 0em;
}
.centerBoxWrapper {
border: 0px solid #9a9a9a;
height: 1%;
margin: 1.1em 0em;
width: 900px
}
Is this why the adjustments don't carry over to the other pages ?
Oh, and yes Stevesh, I want the boxes to be outside the rest of the content.
I await your thoughtful response.
Thank you