PDA

View Full Version : Hiding Breadcrumb from others


FlorisvanBreugel
Feb-24-2008, 09:50 AM
I want to hide my breadcrumb from others, but see it myself, well, I want to have access to the 'share' button but not have it show up for others. I found this code in a previous post:

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

Which almost works, except that it hides everything except the share button from others.. how do I make it hide everything from other people?



Thanks!

- Floris

FlorisvanBreugel
Feb-25-2008, 06:58 PM
I'm still trying to work this through.. any help would be great. Basically I want to have the 'share photo' link show up for me, but not for the public. Any help?

Allen
Feb-25-2008, 07:28 PM
I want to hide my breadcrumb from others, but see it myself, well, I want to have access to the 'share' button but not have it show up for others. I found this code in a previous post:

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

Which almost works, except that it hides everything except the share button from others.. how do I make it hide everything from other people?



Thanks!

- Floris
Try this

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

The share button is part of the breadcrumb div.

FlorisvanBreugel
Feb-26-2008, 10:44 AM
Try this

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

The share button is part of the breadcrumb div.


Sweet, that worked perfectly, thanks!!