The class of the link in the lightbox is:
ddcaptionurl
So, in your stylesheet you can:
Code:
.ddcaptionurl:link {
color:red;
}
.ddcaptionurl:active {
color:red;
}
.ddcaptionurl:visited {
color:red;
}
.ddcaptionurl:hover {
color:red;
}
You can add other property/value pairs besides just color:red; - and you may have different values for the same property for the different states (link, active, visited, hover).
If you need more info on style, see:
http://www.eskimo.com/~bloo/indexdot...pindex/all.htm
or your favorite css reference.
Bookmarks