View Full Version : Name > Galleries > Gallery
Darrell
Aug-12-2009, 06:09 AM
First Post :D
Any way to get rid of this?
A picture example is below.
In each gallery it shows my name, and the gallery names. Is there any way to hide this? Thanks in advance!
http://darrellcassell.smugmug.com/photos/617837582_XhLm2-M.jpg
thaKing
Aug-12-2009, 07:56 AM
in CSS:
#breadcrumb {display: none;}
this would remove it everywhere...if you only want it to be removed from specific galleries, that can be done too...
denisegoldberg
Aug-12-2009, 08:08 AM
That's the breadcrumb. It's a very bad idea to remove it unless you are replacing it with some kind of gallery identifiation within the gallery description.
Please read Are you really sure you want to hide the breadcrumb? Think of your viewers! (http://www.dgrin.com/showthread.php?t=111484)
--- Denise
Phyxius
Aug-12-2009, 08:08 AM
If you'd like to remove the breadcrumb for your customers but keep it for you when you're logged in you can put this code in your CSS:
#breadcrumb {visibility: hidden;}
#altViews {visibility: visible;}
.loggedIn #breadcrumb {visibility: visible;}
Or, if you only want to remove the breadcrumb from specific galleries you can use this code, replacing the XXXXXX with the gallery id:
.gallery_XXXXXX #breadcrumb {visibility: hidden;}
.gallery_XXXXXX#altViews {visibility: visible;}
jfriend
Aug-12-2009, 08:56 AM
If you'd like to remove the breadcrumb for your customers but keep it for you when you're logged in you can put this code in your CSS:
#breadcrumb {visibility: hidden;}
#altViews {visibility: visible;}
.loggedIn #breadcrumb {visibility: visible;}
Or, if you only want to remove the breadcrumb from specific galleries you can use this code, replacing the XXXXXX with the gallery id:
.gallery_XXXXXX #breadcrumb {visibility: hidden;}
.gallery_XXXXXX#altViews {visibility: visible;}
If one is determined to hide the breadcrumb (but, only after reading Denise's posting), then rather than this code:
#breadcrumb {visibility: hidden;}
#altViews {visibility: visible;}
.loggedIn #breadcrumb {visibility: visible;}
it is much simpler and better to use this CSS:
#breadCrumbTrail {display:none;} /* globally */
or
.gallery_xxxxxx #breadCrumbTrail {display: none;} /* for a specific gallery */
This will leave the Tools menu available to you when logged in and give you the save view that your viewers have.
Nobody should hide the whole breadcrumb in galleries because then you lose your Tools menu.
Darrell
Aug-12-2009, 09:19 AM
If one is determined to hide the breadcrumb (but, only after reading Denise's posting), then rather than this code:
#breadcrumb {visibility: hidden;}
#altViews {visibility: visible;}
.loggedIn #breadcrumb {visibility: visible;}
it is much simpler and better to use this CSS:
#breadCrumbTrail {display:none;}
This will leave the Tools menu available to you when logged in and give you the save view that your viewers have.
Nobody should hide the whole breadcrumb in galleries because then you lose your Tools menu.
Looks like i have a few options to choose from.
I've got more then enough help here! Thanks again to everyone!!
But if i have a Nav bar at the top, do you think it will be a big del if it is removed?
denisegoldberg
Aug-12-2009, 10:01 AM
But if i have a Nav bar at the top, do you think it will be a big deal if it is removed?
Yes.
It makes a huge difference to your viewers.
Please read the thread that I referenced above.
--- Denise
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.