PDA

View Full Version : Toolbar: Hide for public viewing, shows for owner


JSS
Aug-31-2009, 10:17 PM
Hi all:

If you can help I would appreciate it.

Currently my site has the Smug Toolbar hidden for both my viewing and the public viewing. Is there a way to have the full Smug Toolbar available for me, the owner, and hidden so others do not see it?

If you have some ideas I would appreciate any help.

Thank you!

www.jstuartstudios.com

jfriend
Aug-31-2009, 10:21 PM
Change this:

#breadcrumb {
display: none;
}

to this:

#breadCrumbTrail {display:none;}

JSS
Aug-31-2009, 10:32 PM
Thank you for the help!

RuSu
Sep-01-2009, 07:40 PM
I have this code for my slide show, which hides the breadcrumbtrail, but it's still hidden from me when logged in which is somewhat frustrating. What do I need to change so I can navigate easily, but others won't see anything?

/*====Slide Show Photos-Page====*/
.gallery_8847547 #breadCrumbTrail,
.gallery_8847547 .play_slideshow,
.gallery_8847547 #albumNav_top,
.gallery_8847547 #albumNav_bottom,
.gallery_8847547 .nophotos h3,
.gallery_8847547 .pageNav
{display:none;}

http://rusuphotography.com/Other/Slide-Show-Photos/8847547_dTwbn#588815550_jTYjS

Thanks!

jfriend
Sep-01-2009, 08:12 PM
I have this code for my slide show, which hides the breadcrumbtrail, but it's still hidden from me when logged in which is somewhat frustrating. What do I need to change so I can navigate easily, but others won't see anything?

/*====Slide Show Photos-Page====*/
.gallery_8847547 #breadCrumbTrail,
.gallery_8847547 .play_slideshow,
.gallery_8847547 #albumNav_top,
.gallery_8847547 #albumNav_bottom,
.gallery_8847547 .nophotos h3,
.gallery_8847547 .pageNav
{display:none;}

http://rusuphotography.com/Other/Slide-Show-Photos/8847547_dTwbn#588815550_jTYjS

Thanks!
Add the part in red:

/*====Slide Show Photos-Page====*/
.notLoggedIn .gallery_8847547 #breadCrumbTrail,
.gallery_8847547 .play_slideshow,
.gallery_8847547 #albumNav_top,
.gallery_8847547 #albumNav_bottom,
.gallery_8847547 .nophotos h3,
.gallery_8847547 .pageNav
{display:none;}

RuSu
Sep-01-2009, 08:31 PM
thanks, John.