Zen Cart Logo

Center Logo

Views: 617

Results 1 to 3 of 3
26 Oct 2011, 12:00 AM
#1
taodesigns avatar

taodesigns

New Zenner

Join Date:
Jul 2007
Location:
Exeter, New Hampshire, USA
Posts:
15
Plugin Contributions:
0

Center Logo

Hi,
I'm using v1.3.9h and I have made a banner to use for the logo on the home page of my store.
http://www.competitionmotorsltd.com/zen/index.php?main_page=
As you can see the contents at the center of the page are all jammed up at the top. I followed the instructions on the tutorial to modify the style sheet.
https://www.zen-cart.com/tutorials/index.php?article=125
Using text-align: center to center tha banner on the page. If I leave the banner float: left or right this doesn't happen. What am I missing here?
Thanks,

26 Oct 2011, 1:11 AM
#2
bobdog avatar

bobdog

Totally Zenned

Join Date:
Mar 2006
Location:
Fresno, California
Posts:
590
Plugin Contributions:
0

Re: Center Logo

you need to edit this:

#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat: repeat-x;
background-color: #ffffff;
height:0px;
}

to this:

#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat: repeat-x;
background-color: #ffffff;
height:110px;
}

31 Oct 2011, 10:18 PM
#3
taodesigns avatar

taodesigns

New Zenner

Join Date:
Jul 2007
Location:
Exeter, New Hampshire, USA
Posts:
15
Plugin Contributions:
0

Re: Center Logo

Thanks BobDog that did the trick :clap: