Hidden captions and navigation
So every gallery style on the site now has a caption above and below the photo; here is how to turn off the caption below and turn on the caption above:
#caption_top {
display: block;
}
#caption_bottom {
display: none;
}
Also, smugmug and smugmug small have navigation hidden at the bottom of the page as well – you just need to turn it on:
#smugmug_small #albumNav_bottom, #smugmug #albumNav_bottom {
display: none;
}

September 3rd, 2005 at 8:48 am
Wouldn’t this be the code required to turn it on?
#smugmug_small #albumNav_bottom, #smugmug #albumNav_bottom {
display: block;
}
the “display: none;” would just keep it off i think.
September 3rd, 2005 at 8:49 am
Actually.. I just saw your point, but it might be helpful for folks that are not that familiar with CSS to give them the actual code to paste in the cobrand section in order to turn it on.
December 5th, 2005 at 7:17 pm
Any way to align the caption CENTER so that is directly above or below the photo? I’ve been playing around with position syntax and can’t seem to figure it out. It would be nice to be able to move the caption left/right/center or justified.