Topic: Tips/Tricks for SharePoint?

Hi there, we're currently successfully using JB with SharePoint 2010 except for a few little details.  Do you have any guidance or resources in general?

If not, specifically I'm interested in caption color.  It's set to white but there must be something overriding it.  Can you tell me what style element I should be looking for?

http://i857.photobucket.com/albums/ab140/nguyenalext/should%20be%20white_zpsueurdq74.png

I see there's a theme.css in \jbcore\classic.  What file's referencing that?

Thx in advance!

Re: Tips/Tricks for SharePoint?

Your caption text color is probably being overwritten by a global custom CSS rule on your web page.
For example, if you have something like:

p {
    color: #ff0000;
}

... then this rule will apply to all text within all <p> tags on your web page including any in your Juicebox gallery. (Juicebox displays image captions within <p> tags.) Juicebox has no option but to inherit such global CSS rules.
Please check your web page for any global CSS rules. Ideally, CSS rules should be applied to only those elements on your web page which require them through use of CSS selectors (classes and ids).

If you like, you could set the color for each individual caption through use of HTML formatting as noted in this FAQ:
How do I add HTML formatting to image captions and titles?

If you continue to experience difficulties, then please post the URL to your gallery so that I can take a look at the problem for myself and hopefully help further. Thank you.