Tell me more ×
SmugMug Stack Exchange is a question and answer site for SmugMug developers and end users. It's 100% free, no registration required.

How do I remove the breadcrumb from my site that shows username>category>gallery etc? Is there any problems with doing that?

share|improve this question

1 Answer

As answered on Dgrin:

If you want to hide the breadcrumb everywhere at all times, use this CSS:

#breadCrumbTrail {display: none;}

If you want it to be visible to you, the site owner when logged in, but not to any visitors, use this CSS:

.notLoggedIn #breadCrumbTrail {display: none;}

Also on that same line on the gallery page, the Share button can be turned off for your viewers by turning off Easy Sharing in gallery settings for any particular gallery (though it will still show for you when you are logged in). The Cart and Buy buttons can be turned off by turning off print ordering in gallery settings for any particular gallery.

One should never hide the #breadcrumb object itself because that also contains the Tools button which is the only way you can do maintenance on your galleries (when logged in).

And, to remove the breadcrumb from just one page/gallery (slideshow):

.gallery_XXXXXX #breadcrumb {visibility: hidden;}

.gallery_XXXXXX#altViews {visibility: visible;}

share|improve this answer
It's a little confusing that right after you state that you should never hide the #breadcrumb, that you show hiding the #breadcrumb (with visibility:hidden instead of display:none to boot) – Mike Kelly Jan 31 '12 at 15:01
Excellent point, Mike. The snippets were from two different posts at the referenced Dgrin thread; put side-by-side the contrast is odd as you noted. – Cody Bennett Jan 31 '12 at 17:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.