PDA

View Full Version : hiding category navigation?


dogwood
Apr-14-2006, 09:05 PM
I've been messing with webdeveloper and editing my CSS and cannot figure this out on this gallery-- even removing CSS line by line:

http://petespringer.smugmug.com/gallery/1005610

I don't want the category (ie Home--Other--Published Photos) to show, but I do want the gallery page navigation to show. I swear at one time that's how it actually looked, and I haven't removed anything, but it's not showing up tonight. Any help would be appreciated. Here's the CSS I put in for the gallery. I don't even know if I need all this-- basically I want a smugmug view gallery of three pages that can be easily navigated-- but doesn't display extra stuff like size options or the search or shopping carts or slideshows-- and doesn't display the Home-- Other-- Published Photos links.

/* PUBLISHED PHOTOS */
.gallery_1005610 .play_slideshow { display: none; }
.gallery_1005610 .nav { display: none; }
.gallery_1005610 .title { color: black; }
.gallery_1005610 .pageNav { display: none; }
.gallery_1005610 #photoKeywords { display: none; }
.gallery_1005610 #keywords { display: none; }
.gallery_1005610 #albumDescription { display: none; }
.gallery_1005610 .loginLink { display: none; }
.gallery_1005610 .cartlink_footer { display:none; }
.gallery_1005610 #sizePicker { display: none; }
.gallery_1005610 #searchWordsShort { display: none; }
.gallery_1005610 .searchglass { display: none; }

Mike Lane
Apr-14-2006, 11:02 PM
I don't want the category (ie Home--Other--Published Photos) to show, but I do want the gallery page navigation to show.

I've read this like 3 times and I can't quite wrap my head around what it means. Can you show me with pictures? :dunno

dogwood
Apr-15-2006, 09:28 AM
Sorry Mike-- it was late and I was frustrated so I wasn't very clear. This should clarify my question (and it's how I should have posted my question last night).

I want to NOT show the navigation links circled in white-- but I do want to show the links circled in red. Right now, I can only figure out how make both things circled show up-- or not at all like the second photo. Any help you could provide would be very appreciated.
http://www.pbase.com/dogwood_digital/image/58678616.jpg

http://www.pbase.com/dogwood_digital/image/58678651.jpg

Mike Lane
Apr-15-2006, 09:41 AM
Ahhhh!

.galleryPage #breadcrumb {display:none;}

That removes it on the galleries only. That also gets rid of the add photos button, the FS slideshow button, and the map this button in the galleries.

dogwood
Apr-15-2006, 10:09 AM
Ahhhh!

.galleryPage #breadcrumb {display:none;}

That removes it on the galleries only. That also gets rid of the add photos button, the FS slideshow button, and the map this button in the galleries.

That worked. Thank you. One more question-- there's still a size choice (small or medium) under each photo, even with this in my CSS:

.gallery_1005610 #sizePicker { display: none; }

Is it possible to get rid of the size options and force a medium view?

Mike Lane
Apr-15-2006, 10:48 AM
That worked. Thank you. One more question-- there's still a size choice (small or medium) under each photo, even with this in my CSS:

.gallery_1005610 #sizePicker { display: none; }

Is it possible to get rid of the size options and force a medium view?

2 ways to do this. First, if you've got some pages with information under the photos that you don't want to go away use this:

#exifOtherSizes {display:none;}

Or Second, if you don't want anything to show below any image anywhere on your site use this:

.imageInfo {display:none;}

The size picker is not for the smugmug style.

dogwood
Apr-15-2006, 12:08 PM
if you've got some pages with information under the photos that you don't want to go away use this:

#exifOtherSizes {display:none;}

Mike:

Thank you again. This is exactly what I was looking for. Now I'll be able to use this on other pages too. Your help has been priceless!:thumb