PDA

View Full Version : HTML Gallery Issue


twincitiesphoto
Dec-31-2007, 10:46 AM
Ok - so I'm trying to create a strictly HTML gallery to use as an information site (see link below) and I'm making progress but I have this crazy text at the bottom of the gallery which reads:
"This is a brand new gallery with no photos."

Anyone know what i'm doing wrong ??


http://www.twincitiesphotography.com/gallery/4083777

Andy
Dec-31-2007, 11:27 AM
Yes. Follow *all* the bits in FAQ#42
http://www.smugmug.com/help/customize-faq.mg

:)

twincitiesphoto
Dec-31-2007, 11:38 AM
Thanks Andy - I was referring to those instructions - but I must be missing something that I just can pick up on - here is the code that is pasted into the CSS on my customization page:

/* html only page for gallery 4083777 */
.gallery_4083777.nophotos {
display:none;
}
.gallery_4083777.pageNav {
display:none;
}


Do you see anything odd with this ???

denisegoldberg
Dec-31-2007, 11:54 AM
Thanks Andy - I was referring to those instructions - but I must be missing something that I just can pick up on - here is the code that is pasted into the CSS on my customization page:

/* html only page for gallery 4083777 */
.gallery_4083777.nophotos {
display:none;
}
.gallery_4083777.pageNav {
display:none;
}


Do you see anything odd with this ???
You need a space after the gallery number and before the .nophotos and .pageNav

Try this:
/* html only page for gallery 4083777 */
.gallery_4083777 .nophotos {
display:none;
}
.gallery_4083777 .pageNav {
display:none;
}

--- Denise

twincitiesphoto
Dec-31-2007, 12:12 PM
That did the trick - thanks very much Denise - ugh - I knew it had to be something simple.