Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Prev/Product Listing/Next Buttons...

Prev/Product Listing/Next Buttons...

Locked

Views: 1,492

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
19 Sep 2008, 12:20 AM
#1
jenzi avatar

jenzi

Zen Follower

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

Prev/Product Listing/Next Buttons...

How do I put a space in between these buttons? Which file do I edit in order to do this? I wasn't sure if this is done via the stylesheet or if it was hardcoded. Many thanks.

19 Sep 2008, 4:08 AM
#2
jenzi avatar

jenzi

Zen Follower

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

Re: Prev/Product Listing/Next Buttons...

The buttons I refer to are ON THIS PAGE.

You can see they are squished together and I would like to have a space in between.

19 Sep 2008, 6:52 AM
#3
gjh42 avatar

gjh42

Black Belt

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

Re: Prev/Product Listing/Next Buttons...

In your stylesheet, find.navNextPrevList { display: inline; white-space: nowrap; margin: 0; padding: 0.5em 0em; list-style-type: none; }and add to the margin:```
.navNextPrevList {
display: inline;
white-space: nowrap;
margin: 0 1.0em;
padding: 0.5em 0em;
list-style-type: none;
}

19 Sep 2008, 7:16 AM
#4
jenzi avatar

jenzi

Zen Follower

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

Re: Prev/Product Listing/Next Buttons...

Marvellous! Thanks for your help.