PDA

View Full Version : Breadcrumb Help


ericabickel
Mar-24-2009, 08:20 PM
I'm sure this has been asked a million times but after going through 10 pages of posts and then failing at the search, I figured I'd ask the gurus.

I currently have the breadcrumb turned off on the entire site, but would like to have it on ONLY inside the gallery a person is currently viewing. I don't want it on the category page, or the galleries page, only inside the gallery themselves, so people can navigate back to the head category.

Thanks! :D

jfriend
Mar-24-2009, 08:39 PM
Remove this CSS:

#breadcrumb {visibility: hidden;}
#altViews {visibility: visible;}
.loggedIn #breadcrumb {visibility: visible;}


Add this CSS:

.category #breadCrumbTrail {display:none;}

ericabickel
Mar-24-2009, 08:49 PM
Thank you!

In case anyone else comes across this with the same problem, after I did that, I also had to add this code to get the breadcrumb off the "about me" and "contact" page:

.notLoggedIn .gallery_xxxxxxxx #breadcrumb {display: none;}

Thanks again :)