Protecting files makes gallery invisible
LuckyTCB
Registered Users Posts: 55 Big grins
Every time I attempt to protect my galleries, all of the photos become invisible (thumbnails only appear when you move your cursor over them). Am I doing something wrong, or is this some kind of bug?
www.craiglindemanphoto.com
www.craiglindemanphoto.com
craiglindemanphoto.com
0
Comments
Homepage • Popular
JFriend's javascript customizations • Secrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Sorry John, I've been away from the site for a while.
Here is a sample of the problem I've been having.
http://www.craiglindemanphoto.com/gallery/6111348_FS5wi#384122149_Wh8Wt
And I'm using a mac OS 10.4.11 and I'm viewing the page through Safari.
This part of your CSS customization is causing the problem. Remove it and the problem goes away.
a img.imgBorder, .imgBorder {
padding: 0;
border: none !important;
background: none !important;
}
When Smugmug right-click protects the thumbs, it puts the thumbs in as a background image (right click doesn't work on background images). The CSS you have above is clearing any background image from the thumbs, thus the visible thumbs go away.
What are you trying to accomplish with this block of CSS and perhaps we can accomplish it without messing up right-click protection.
Homepage • Popular
JFriend's javascript customizations • Secrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Homepage • Popular
JFriend's javascript customizations • Secrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
a img.imgBorder, .imgBorder {
padding: 0 !important;
border: none !important;
}
Homepage • Popular
JFriend's javascript customizations • Secrets for getting fast answers on Dgrin
Always include a link to your site when posting a question