View Full Version : No Add Photos and Tools Buttons
Jay78412
Dec-11-2008, 03:31 PM
I don't have Add Photos and Tool bar in my galleries.
www.jmedwardsphotography.com (http://www.jmedwardsphotography.com)
jfriend
Dec-11-2008, 03:36 PM
I don't have Add Photos and Tool bar in my galleries.
www.jmedwardsphotography.com (http://www.jmedwardsphotography.com)
You are hiding the object that contains those buttons. This CSS of yours:
#breadcrumb {
display: none;}
makes those buttons be hidden. If you want all breadcrumb navigation hidden for your viewers, but you want to see the toolbar buttons when logged in, then change the above CSS to this:
.notLoggedIn #breadcrumb {display: none;}
denisegoldberg
Dec-11-2008, 03:41 PM
I don't have Add Photos and Tool bar in my galleries.
www.jmedwardsphotography.com (http://www.jmedwardsphotography.com)
Those buttons are removed if you hide the breadcrumb.
You have this in your CSS:
#breadcrumb {
display: none;}
Change that to
.notLoggedIn #breadcrumb {
display: none;
}
Also - I highly recommend that you read my post about hiding (not hiding!) the breadcrumb, at http://www.dgrin.com/showthread.php?t=111484. Without the breadcrumb and without the addition of some descriptive information to your galleries, your viewers won't have a clue what gallery they are viewing.
--- Denise
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.