PDA

View Full Version : Filenames not showing. Why?


Lou Gonzalez
Jun-30-2008, 10:28 AM
For some reason I just noticed today that my image filenames are not showing. It's happing to all my galleries. This is very important to me as I have my clients use the filenames to pick out their favorites.

I have show filenames selected to yes and they still aren't showing? Any ideas? I have not changed anything on my side at all. This is critical for me as I need to send a link to my client ASAP.

Here's a sample gallery (http://www.lifesharephoto.com/gallery/5288032_ZVAPe#322802086_FwEvq).

Thanks!

Allen
Jun-30-2008, 10:35 AM
For some reason I just noticed today that my image filenames are not showing. It's happing to all my galleries. This is very important to me as I have my clients use the filenames to pick out their favorites.

I have show filenames selected to yes and they still aren't showing? Any ideas? I have not changed anything on my side at all. This is critical for me as I need to send a link to my client ASAP.

Here's a sample gallery (http://www.lifesharephoto.com/gallery/5288032_ZVAPe#322802086_FwEvq).

Thanks!
Add this to your CSS, should work.

#fileNameBoxWrapper
{display: block;}

Lou Gonzalez
Jun-30-2008, 10:46 AM
Add this to your CSS, should work.

#fileNameBoxWrapper
{display: block;}

Ugh. Ok, I added the code. Now it says "Filename: 123"

Before it used to just say the "123". Did something change? :huh

I haven't touched my code in a long while so I'm fairly certain its not that and it was always working. Is there a way to have it the way it was before where it simply shows the name instead of "Filename:..."???

Lou Gonzalez
Jun-30-2008, 11:11 AM
Ugh. Ok, I added the code. Now it says "Filename: 123"

Before it used to just say the "123". Did something change? :huh

I haven't touched my code in a long while so I'm fairly certain its not that and it was always working. Is there a way to have it the way it was before where it simply shows the name instead of "Filename:..."???

Ok, I had to add some code to get it the way it was. Bizarre.

/*Forces filename to show*/
#fileNameBoxWrapper{
display: block;
text-align: center;
}
#fileNameBox{
text-align: center;
}
#fileNameBox .title {
display:none;
}

Now it's the way it was. Any idea why I now have to add this code to make it work? Very strange.:scratch