
Originally Posted by
rebsy
How can I control the font of the caption that shows up?
To answer that, it would be helpful for you to consider that the caption will be in the load area configured for the larger image. So given:
Code:
<a href="images/vest1.jpg" rel="enlargeimage::mouseover" rev="loadarea"> . . .
The larger image and its caption will show up in an element with the id of loadarea. So in your stylesheet (preferred) or inline for the loadarea element you can set style, including font-family, and if you like, any other style property value pairs that would be valid and applicable. Example using a stylesheet entry:
Code:
#loadarea {
font-family: verdana, arial, sans-serif;
}
Example using inline style:
HTML Code:
<div id="loadarea" style="font-family: verdana, arial, sans-serif;"></div>
Bookmarks