smallpigpig:
So I was playing with the width my page, and at the end, decided against it.
so i restored all the original numbers on css stylesheet, and when i checked it out, the side bars seemed to be misaligned.
can someone kindly check out my site and see what i can do to line up the sideboxes again?
my site is
http://paperworksco.com/catalog.
thank you kindly!
Hey there...
It looks like you have a 20px padding added onto your side boxes heading and content...
.leftBoxHeading, .rightBoxHeading (line 651)
{
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
background-image: url(../images/box000.gif);
background-repeat: no-repeat;
padding-top: 20px;
padding-right: 20px;
padding-bottom: 20px;
padding-left: 20px;
}
&
.sideBoxContent (line 675)
{
background-image: url(../images/box002.gif);
background-repeat: no-repeat;
font-size: 11px;
line-height: 125%;
background-x-position: center;
background-y-position: bottom;
padding-top: 5px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 25px;
}
The padding on the left and right are hendering from it being completely flush on both sides...what I would suggest doing is first trying to remove the padding all together for the padding left and padding right...if that doesn't work let me know.