Is there something wrong with the buttons?
CynthiaM
Registered Users Posts: 364 Major grins
The only gallery button that I can get to work is the slideshow button. Is there something wrong with the other buttons? Or is it something with my site that is preventing the buttons from working?
0
Comments
Do you see buttons that don't work? Exactly what buttons?
My Website index | My Blog
When I'm logged in (in owner's view), there are buttons toward the upper right in each gallery - Add Photos, Themes, Share and Slideshow. If I click on Add Photos, nada; Themes, nada; Share, nada; Slideshow-Bingo, the slideshow launches.
Doesn't do me much good if I want to link a photo.
My Fine Art Photography
My Infrared Photography
www.CynthiaMerzerPhotography.com
.loggedIn .share_button {display: block;}
Please change that to:
.loggedIn .share_button {
display: block;
display:-moz-inline-box;
display:inline-block;
}
When Smugmug changed their buttons about a month ago, this code needed to change to match it.
Homepage • Popular
JFriend's javascript customizations • Secrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
.share_button {display: none;}
Should this be deleted?
Keep in mind that I want to be able to disable a viewer's ability to share , but not mine.
My Fine Art Photography
My Infrared Photography
www.CynthiaMerzerPhotography.com
No, you can leave that one to accomplish hiding the button for your viewers. I'm trying to track down what is causing the problem. One theory is that it's being caused by this javascript in your customization:
I would recommend changing that code to this:
This will do two things. First, it will limit the code to only the breadCrumbTrail div which does not include the buttons that are getting screwed up so it's a more focused change, but it will still do what you want it to do. And, it will change the timing of this change until we are sure the page is ready for a change.
I don't know if it will fix the problem until you try it, but it's a good thing to fix anyway and it will eliminate the next possible cause.
Homepage • Popular
JFriend's javascript customizations • Secrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
My Fine Art Photography
My Infrared Photography
www.CynthiaMerzerPhotography.com