John,
I played around with adding different divisions like you suggested and adding a new CSS style so I can include Rich HTML. This is what I've come up with.
Probably not the best way for right now I had to use a specific margin to keep the second title away from the first title, which I would prefer not to do.
I'm sure there is a better solution? Any suggestions?
Best regards,
Alan
HTML Code:
<li><a href="the blue whale/gallery1/large/blue2.jpg" rel="the blue whale/gallery1/thumbnails/blue2.jpg">
<div class="ps_caption_title">Image Title:</div><div class="ps_caption_title2">Blue Whale swimming in the open waters.</div><br />
<div class="ps_caption_desc">Description</div><br />
</a></li>
Here is the CSS I've setup for the titles and description.
Code:
.ps_caption_title {
position: absolute;
bottom: 25px;
left: 0;
text-align: left;
width: 100%;
color: #333;
font-family: "Times New Roman", Times, serif;
font-size: 14px;
margin-left: 20px;
font-weight: bold;
}
.ps_caption_title2 {
position: absolute;
bottom: 25px;
left: 0;
text-align: left;
width: 100%;
color: #999;
font-family: "Times New Roman", Times, serif;
font-size: 13px;
margin-left: 100px;
}
.ps_caption_desc {
position: absolute;
bottom: 10px;
left: 0;
text-align: left;
width: 100%;
color: #F00;
font-family: "Times New Roman", Times, serif;
font-size: 13px;
margin-left: 20px;
}
Bookmarks