PDA

View Full Version : Styling the photo caption


mbrady
Aug-16-2005, 02:23 PM
I'm playing around with the new stuff that just rolled out and was trying to change the style of the photo caption. In the old system, I was able to increase the size and change the font color without affecting anything else on the page.

But in the new system, I can't seem to do that without altering other text on the page. It appears that the photo caption is within a DIV with the bottom_border style. I can customize that CSS class and change the font size and color, but it also causes changes to the text near the top that has the "gallery pages: 1 of x" and the "Prev" and "Next" text above the photo.

Is there a way to isolate just the photo caption? I do like their new location though!

Thanks,
Matt

{JT}
Aug-16-2005, 02:35 PM
The caption now has an ID associated with it.



#caption {
font-size: 20px;
}

mbrady
Aug-16-2005, 03:59 PM
The caption now has an ID associated with it.



#caption {
font-size: 20px;
}


Doh! I didn't even look for the ID's, just the class attribute - duh

Thanks!