That may require some custom code. However, if you aren't using the description as title or alt (do not have either of these set):
Code:
slides#.use_alt=1; //use for descriptions as images alt attributes
slides#.use_title=1; //use for descriptions as images title attributes
Instead of like:
Code:
slides2[0] = ["photo6.jpg", "Section = Art - Fountain by M. Duchamp"];
You can put regular markup in the description field and use style in a stylesheet to style it, example:
Code:
slides2[0] = ["photo6.jpg", '<span class="desc_sec">Section = Art</span> - <span class="desc_title_artist">Fountain</span> by <span class="desc_title_artist">M. Duchamp</span>'];
Notice that the delimiters for the description are now single quotes (') so that double quotes (") may be used inside it.
Then in your stylesheet you can have like:
Code:
.desc_sec {
font: normal smaller 'times new roman', serif;
color: gray;
}
.desc_title_artist {
font: bold 100% arial, sans-serif;
color: black;
}
Bookmarks