Toggle navigation
Sign In
Toggle navigation
Categories
Discussions
Activity
Best Of...
Discussion
Hide Photo Caption
Author
Date within
1 day
3 days
1 week
2 weeks
1 month
2 months
6 months
1 year
of
Examples: Monday, today, last week, Mar 26, 3/26/04
Search
Home
›
SmugMug Support
Hide Photo Caption
iSYTE
Registered Users
Posts:
71
Big grins
March 16, 2009
edited March 16, 2009
in
SmugMug Support
Some of my photos have captions and I do not want them visible. How do I hide them?
0
Comments
Allen
Registered Users
Posts:
10,016
Major grins
March 16, 2009
edited March 16, 2009
iSYTE
wrote:
Some of my photos have captions and I do not want them visible. How do I hide them?
I think you can only target the whole gallery but, add a div around the ones you want hidden and hide with CSS.
Put this in caption
<html>
<div class="hideCaption">
caption text here <br />
more caption text here
</div>
</html>
The text is inside html tags so <br />'s will be needed for new llines.
Add this to your CSS
.notLoggedIn .hideCaption {display:none;}
Using a class means you can use <div class="hideCaption"> in any gallery in
any caption and the one CSS rule gets them all.
Al - Just a volunteer here having fun
My Website index
|
My Blog
0
Sign In
or
Register
to comment.
Comments
Put this in caption
<html>
<div class="hideCaption">
caption text here <br />
more caption text here
</div>
</html>
The text is inside html tags so <br />'s will be needed for new llines.
Add this to your CSS
.notLoggedIn .hideCaption {display:none;}
Using a class means you can use <div class="hideCaption"> in any gallery in
any caption and the one CSS rule gets them all.
My Website index | My Blog