PDA

View Full Version : hiding page navigation


ngrussell
Feb-10-2009, 07:51 PM
I'm sorry to ask this question because I'm sure it's been covered 100 times or so, but I can not find the answer anywhere. Today while adding a page to my site, I somehow broke the code that hides the page navigation at the top of my journal pages so now the top of every page says "Gallery pages: 1" I can not figure out what is wrong with my code. Does anyone know what the proper code is to hide this?

my site is nathanrussellphotography.smugmug.com

Thanks

jfriend
Feb-10-2009, 07:58 PM
Remove the extra last comma in this:

.gallery_6729178 .pageNav, .gallery_6728654 .pageNav, .gallery_6828812 .pageNav, .gallery_6729195 .pageNav, .gallery_7328330 .pagenav, {
visibility:hidden;
}

Also, you may want to change it to:

.gallery_6729178 .pageNav, .gallery_6728654 .pageNav, .gallery_6828812 .pageNav, .gallery_6729195 .pageNav, .gallery_7328330 .pagenav {
display:none;
}

which will hide it and make it more compact.

ngrussell
Feb-10-2009, 08:05 PM
Thanks, i knew it would be something like that. sheesh.