PDA

View Full Version : Html page only can't seem to hide the picture.


shamu
Mar-31-2008, 08:05 PM
I created a new gallery and added a photo to it. Then I decided to use this gallery for my calendar so I want to hide the picture. I added the code to my CSS but I still see the photo in the gallery. Any help would be greatly appreciated. The gallery is http://www.groverstudios.com/gallery/4613840_FWAcP

I added the following to my css but it doesn't appear to remove the pic:
/* html only page for gallery XXXXXX */
.gallery_4613840 .nophotos { display: none; }

Thank you.

Allen
Mar-31-2008, 08:17 PM
I created a new gallery and added a photo to it. Then I decided to use this gallery for my calendar so I want to hide the picture. I added the code to my CSS but I still see the photo in the gallery. Any help would be greatly appreciated. The gallery is http://www.groverstudios.com/gallery/4613840_FWAcP

I added the following to my css but it doesn't appear to remove the pic:
/* html only page for gallery XXXXXX */
.gallery_4613840 .nophotos { display: none; }

Thank you.
It's the journal photo you want removed.

.gallery_4613840 #albumNav_top,
.gallery_4613840 #albumNav_bottom,
.gallery_4613840 .journal_entry { display: none; }

Remove the /* and */ around the large menu CSS and it'll work. Or remove all the, you're not using it anyway.

shamu
Mar-31-2008, 09:49 PM
Thanks for the quick reply Allen. I really appreciate it.



It's the journal photo you want removed.

.gallery_4613840 #albumNav_top,
.gallery_4613840 #albumNav_bottom,
.gallery_4613840 .journal_entry { display: none; }

Remove the /* and */ around the large menu CSS and it'll work. Or remove all the, you're not using it anyway.