I have a site that is coming along well except I can not center the Ezpage Navigation. Thought it would be margin: auto; in the navEzpagesTop but that didn't work. Don't see anywhere in the template that I could hard code that.
Help appreciated.
C.
I have a site that is coming along well except I can not center the Ezpage Navigation. Thought it would be margin: auto; in the navEzpagesTop but that didn't work. Don't see anywhere in the template that I could hard code that.
Help appreciated.
C.
(Sorry,,, see below)
20 years a Zencart User
In your stylesheet
Put THIS:-
text-align: center;
UNDER HERE:
#navEZPagesTop {
SO:-
#navEZPagesTop {
text-align: center;
(Mine looks like this, but it's possible the remaining style tags are different in your css):-
#navEZPagesTop {
text-align: center;
background-color: #abbbd3;
background-image: url(../images/tile_back.gif);
font-size: 0.95em;
font-weight: bold;
margin: 0em;
padding: 0.5em;
}
20 years a Zencart User
Do you have:-
#navEZPagesTop {
Listed anywhere else on the css.
(I do so many sites I can never recall if I've split up the styles to suit my layouts!)
Look for a possible second instance of " #navEZPagesTop { " .
Comment it out, or split it from the group it may be listed with, and create a separate set of styles for it
20 years a Zencart User