PDA

View Full Version : How to get pages with in categories?


jsdenomme
Mar-21-2010, 02:17 PM
Hey,
don't know if it's a restriction of my account but I don't seem to able to get multiple photo page with in a categorie. Is there something wrong with my code? (The portrait categorie is the only one with enough pictures to have a another page).

denisegoldberg
Mar-21-2010, 02:25 PM
Your Portraits navbar entry takes your viewer to a gallery. You removed the page navigation with the bolded entries in this CSS:
/*==== Portrait Page ====*/
.gallery_9753469 #breadCrumbTrail,
.gallery_9753469 .play_slideshow,
.gallery_9753469 .share_button,
.gallery_9753469 #albumNav_top,
.gallery_9753469 #albumNav_bottom,
.gallery_9753469 .nophotos h3,
.gallery_9753469 .pageNav
{display:none;}
To get the page navigation back, change the CSS for that gallery to:

/*==== Portrait Page ====*/
.gallery_9753469 #breadCrumbTrail,
.gallery_9753469 .play_slideshow,
.gallery_9753469 .share_button,
.gallery_9753469 .nophotos h3
{display:none;}

--- Denise

jsdenomme
Mar-21-2010, 06:44 PM
Thanx!