PDA

View Full Version : Page Navigation - Hiding


retrato
Feb-23-2007, 08:58 AM
I placed the following in CSS:

/* Remove the page navigation from Menu and Location pages */
.gallery_2506243 .pageNav {
display: none;
}
.gallery_2506252 .pageNav {
display: none;
}

However, the page navigation still shows in:

http://www.tipanan.net/gallery/2506243/1/131587751/Large
http://www.tipanan.net/gallery/2506252/1/131587973/Large

Am I missing a code(s)?

Thanks

DavidTO
Feb-23-2007, 09:01 AM
you need to get rid of .albumNav, too. For each gallery, you need two lines.

.gallery_2506243 .pageNav,
.gallery_2506243 .albumNav {
display: none;
}

retrato
Feb-23-2007, 09:19 AM
you need to get rid of .albumNav, too. For each gallery, you need two lines.

.gallery_2506243 .pageNav,
.gallery_2506243 .albumNav {
display: none;
}

Yay! Thanks!