Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / How to center EzPage Links in header

How to center EzPage Links in header

Locked

Views: 2,424

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
1 Apr 2008, 5:04 PM
#1
sfklaas avatar

sfklaas

Zen Follower

Join Date:
Mar 2008
Posts:
219
Plugin Contributions:
0

How to center EzPage Links in header

To get an idea of what I want to do, here is my site https://www.bendisskin.com. Is there a way to center the links "About bendis" & "Bendis on Facebook" that are located in the header?

Thanks

Steve

1 Apr 2008, 5:40 PM
#2
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: How to center EzPage Links in header

In your stylesheet, find #navEZPagesTop and add
text-align: center;```
#navEZPagesTop {
background-color: #abbbd3;
background-image: url(../images/tile_back.gif);
font-size: 0.95em;
font-weight: bold;
margin: 0em;
padding: 0.5em;
text-align: center;
}

1 Apr 2008, 5:53 PM
#3
sfklaas avatar

sfklaas

Zen Follower

Join Date:
Mar 2008
Posts:
219
Plugin Contributions:
0

Re: How to center EzPage Links in header

Thanks, it worked!