Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Left & Right side boxes do not look the same

Left & Right side boxes do not look the same

Locked

Views: 948

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
16 May 2008, 3:10 AM
#1
jayex avatar

jayex

New Zenner

Join Date:
Aug 2007
Posts:
5
Plugin Contributions:
0

Left & Right side boxes do not look the same

I have been playing with the stylesheet for my site in the left and right sidebox areas trying to get the two to have the same look. The left sidebox appears to have a small amount of padding while the right sidebox the headers go right to the edge. You can see what I am talking about here. http://mountainviewpromo.com/mvpstore/

Seems no matter what changes I make to the stylesheet I cannot get any look of padding on the right side. Any ideas?

18 May 2008, 11:00 AM
#2
usernamenone avatar

usernamenone

Totally Zenned

Join Date:
Sep 2006
Posts:
541
Plugin Contributions:
0

Re: Left & Right side boxes do not look the same

this is the top white space and the border in left boxes:

.leftBoxContainer {
border: 1px solid #ffffff;
margin-top: 1.5em;
}

If you want both left and right boxes to match you need to add .rightBoxContainer to the style sheet like this:

.leftBoxContainer, .rightBoxContainer {
border: 1px solid #ffffff;
margin-top: 1.5em;
}

Then make your adjustments and they will both change

4 Jun 2008, 4:16 PM
#3
jayex avatar

jayex

New Zenner

Join Date:
Aug 2007
Posts:
5
Plugin Contributions:
0

Re: Left & Right side boxes do not look the same

Thanks. That did it.