PDA

View Full Version : Lost my photo tools buttons in my galleries


sgrotta
Mar-23-2009, 02:48 PM
On www.WordsmithsProject.com (http://www.WordsmithsProject.com), my individual galleries no longer have buttons for me to do anything, such as set prices of prints, add photos, customize the page, etc.

How do I get those back?

Thanks, Sally

Allen
Mar-23-2009, 03:09 PM
On www.WordsmithsProject.com (http://www.WordsmithsProject.com), my individual galleries no longer have buttons for me to do anything, such as set prices of prints, add photos, customize the page, etc.

How do I get those back?

Thanks, Sally
See if adding the .notLoggedIn to this helps.

.notLoggedIn #breadcrumb {
display: none;
}

jfriend
Mar-23-2009, 03:13 PM
You are hiding all the buttons with your CSS. I would recommend changing this CSS:

#breadcrumb {
display: none;
}


to this:

#breadCrumbTrail {
display: none;
}

sgrotta
Mar-23-2009, 03:46 PM
You are hiding all the buttons with your CSS. I would recommend changing this CSS:

#breadcrumb {
display: none;
}


to this:

#breadCrumbTrail {
display: none;
}

That worked! Thanks, Sally