Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Need help adding space between my header and the center content.

Need help adding space between my header and the center content.

Locked

Views: 1,882

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
20 Jan 2007, 12:00 AM
#1
scrap_eze avatar

scrap_eze

New Zenner

Join Date:
Jan 2007
Posts:
3
Plugin Contributions:
0

Need help adding space between my header and the center content.

I am completely new to this and just installed zencart yesterday so far so good pbased on all the great info here. i do have two problem I cannot solve right now.

  1. I have a logo that extends through the header into the center content box. I want to know if there is a way to globally insert a blank space so my logo does not overlap any of my content.

you can see what I mean by going here http://www.scrap-eze.net/catalog/

  1. I would like to change the comment under the products from price unavailable to something else like log in to see prices or something a little better then unavailable.

any help would be much appreciated.

20 Jan 2007, 12:30 AM
#2
barco57 avatar

barco57

Totally Zenned

Join Date:
Apr 2006
Location:
West Salem, IL
Posts:
2,845
Plugin Contributions:
0

Re: Need help adding space between my header and the center content.

real easy find #logoWrapper in your stylesheet and set the height to the same size as the logo image.....you currently have it set to 75px when tis closer to 175px

20 Jan 2007, 12:35 AM
#3
barco57 avatar

barco57

Totally Zenned

Join Date:
Apr 2006
Location:
West Salem, IL
Posts:
2,845
Plugin Contributions:
0

Re: Need help adding space between my header and the center content.

#2. Use the developer toolkit (admin>tools) and search the files for the exact string "Price Unavailable" it will show you the file where the define is and you can than go and change it.....should be in includes/languages/english.php

20 Jan 2007, 12:58 AM
#4
scrap_eze avatar

scrap_eze

New Zenner

Join Date:
Jan 2007
Posts:
3
Plugin Contributions:
0

Re: Need help adding space between my header and the center content.

barco57:

real easy find #logoWrapper in your stylesheet and set the height to the same size as the logo image.....you currently have it set to 75px when tis closer to 175px

I did this and all it did is expand the area around the logo. I want everything to stay the same except for everything in the center content area to be pushed down a little.

I am not sure if this is even possible. Thanks for the tip on looking up price not available

20 Jan 2007, 1:34 AM
#5
barco57 avatar

barco57

Totally Zenned

Join Date:
Apr 2006
Location:
West Salem, IL
Posts:
2,845
Plugin Contributions:
0

Re: Need help adding space between my header and the center content.

ok I get what your after....find the following in your stylesheet```
.centerColumn, #bannerOne, #bannerTwo, #bannerThree, #bannerFour, #bannerFive, #bannerSix {
padding: 0.8em;
}

remove .centerColumn from the above statement and create a new one below it that looks like this......```
#bannerOne, #bannerTwo, #bannerThree, #bannerFour, #bannerFive, #bannerSix {
	padding: 0.8em;
	}
.centerColumn {margin-top: 60px; padding: 0.8em;}
20 Jan 2007, 2:22 AM
#6
scrap_eze avatar

scrap_eze

New Zenner

Join Date:
Jan 2007
Posts:
3
Plugin Contributions:
0

Re: Need help adding space between my header and the center content.

worked like a charm thank you very much.