Zen Cart Logo
Forums / Basic Configuration / can someone guide me to the right direction?

can someone guide me to the right direction?

Locked

Views: 1,299

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
20 Sep 2007, 9:23 PM
#1
smallpigpig avatar

smallpigpig

New Zenner

Join Date:
Sep 2007
Posts:
79
Plugin Contributions:
0

can someone guide me to the right direction?

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!

1 Oct 2007, 10:17 PM
#2
jheir16 avatar

jheir16

New Zenner

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

Re: can someone guide me to the right direction?

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.

20 Oct 2007, 6:25 AM
#3
yakota avatar

yakota

New Zenner

Join Date:
Oct 2007
Posts:
6
Plugin Contributions:
0

Re: can someone guide me to the right direction?

thanks a lot