Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Vertical position of side boxes (bring them down)

Vertical position of side boxes (bring them down)

Locked

Views: 1,136

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
29 Jun 2006, 11:23 PM
#1
cfe avatar

cfe

New Zenner

Join Date:
Jun 2006
Posts:
86
Plugin Contributions:
0

Vertical position of side boxes (bring them down)

Probably (hopefully) simple question, and I'm tired of sifting through php files that I know little about. On my store at:

http://cfestriketeam.com/zencart

I'd like to bring the sideboxes down the page so that they are level with the middle graphic. Help!

30 Jun 2006, 5:29 PM
#2
marw avatar

marw

New Zenner

Join Date:
Feb 2006
Location:
Hungary
Posts:
39
Plugin Contributions:
0

Re: Vertical position of side boxes (bring them down)

Hi!

Just an idea, I can't check it now, so don't forget to backup your CSS file before changing anything.

You should add (or change) two lines in your stylesheet:

#categoriesHeading
{
padding-top: xxx px;
}

#searchBoxHeading
{
padding-top: xxx px;
}

Change the xxx until you find the right position.
I'm not absolutely sure about the div tags, I'll verify it tomorrow.

Good luck!

30 Jun 2006, 6:03 PM
#3
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Vertical position of side boxes (bring them down)

Which version of ZC are you using?

If you are using a version earlier than 1.3.+ it will be substantially more difficult to achieve what what you want because of the table based layout.

with versiion 1.3. + things are simpler because most of the layout tables have been removed in favor of CSS layout.

1 Jul 2006, 11:17 AM
#4
marw avatar

marw

New Zenner

Join Date:
Feb 2006
Location:
Hungary
Posts:
39
Plugin Contributions:
0

Re: Vertical position of side boxes (bring them down)

Tried to refresh my memory today:

#categoriesHeading is OK, but there's no #searchBoxHeading, it's called #searchHeading.

clydejones is right, this will only work if you use an 1.3+ version.