Zen Cart Logo
Forums / General Questions / Centering Logo, Remove right colum, Change copyright info.

Centering Logo, Remove right colum, Change copyright info.

Locked

Views: 1,726

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
5 Mar 2007, 7:13 PM
#1
arcade_alchemy avatar

arcade_alchemy

New Zenner

Join Date:
Mar 2007
Posts:
4
Plugin Contributions:
0

Centering Logo, Remove right colum, Change copyright info.

I have been able to get pretty far by just reading other posts. But I have kind hit a wall. I want to center my logo in the header but I do not have the lines in my stylesheet seen in other posts about this. Adding this line doesn't help.

Also looking to remove the right hand colum and charnge the Copyright © 2007 Zen Cart. at the bottom.

http://www.ArcadeAlchemy.com

Thanks in advance.

5 Mar 2007, 11:32 PM
#3
arcade_alchemy avatar

arcade_alchemy

New Zenner

Join Date:
Mar 2007
Posts:
4
Plugin Contributions:
0

Re: Centering Logo, Remove right colum, Change copyright info.

well, I made the image big enough to look like it's centered even though it's still left.:sleepy:

6 Mar 2007, 1:22 AM
#4
clydejones avatar

clydejones

Deceased

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

Re: Centering Logo, Remove right colum, Change copyright info.

Arcade:Alchemy:

I have been able to get pretty far by just reading other posts. But I have kind hit a wall. I want to center my logo in the header but I do not have the lines in my stylesheet seen in other posts about this. Adding this line doesn't help.

Also looking to remove the right hand colum and charnge the Copyright © 2007 Zen Cart. at the bottom.

http://www.ArcadeAlchemy.com

Thanks in advance.

www.zen-cart.com/tutorials/index.php?article=131

www.zen-cart.com/tutorials/index.php?article=125

You can turn off the right column globally in admin -> configuration -> layout settings

15 Apr 2007, 4:24 PM
#5
robgo777 avatar

robgo777

New Zenner

Join Date:
Apr 2007
Posts:
15
Plugin Contributions:
0

Re: Centering Logo, Remove right colum, Change copyright info.

For those of you who want a quick and simple answer to the center logo question, rather than being pointed around to tutorials as if everyone has all the time in the world to play with this thing...

Open up your stylesheet:
/includes/templates/YOUR_TEMPLATE/css/stylesheet.css

Find:

#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: left;
}

replace float: left; to text-align: center;

That's it!!!

15 Apr 2007, 6:35 PM
#6
clydejones avatar

clydejones

Deceased

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

Re: Centering Logo, Remove right colum, Change copyright info.

robgo777:

For those of you who want a quick and simple answer to the center logo question, rather than being pointed around to tutorials as if everyone has all the time in the world to play with this thing...

Open up your stylesheet:
/includes/templates/YOUR_TEMPLATE/css/stylesheet.css

Find:

#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: left;
}

replace float: left; to text-align: center;

That's it!!!

Please NOTE that doing this without breaking out #logo into its own declaration will center everything that uses these classes and IDs.