Photonic will pick up the color from your theme. If you want to change this, you will have to add something like this to your theme’s style.css:
#swipebox-title a {
color: #fff;
}
Thanks! Used inspector to pinpoint this same thing for colors 😉
But how do I add the title to mobile view..any ideas?
Interesting… I never realized this. Apparently there is a setting in Swipebox that does this. I did a bit of googling and found a fix (somewhat). You can look for this code in photonic.js:
if ($j.swipebox) {
$j('a.launch-gallery-swipebox').swipebox({
hideBarsDelay: 0
});
}
Change it to this:
if ($.swipebox) {
$('a.launch-gallery-swipebox').swipebox({
hideBarsDelay: 0,
removeBarsOnMobile: false
});
}
Let me know if this works.
… Or, just download the most recent version. There is a setting under Photonic → Settings → Generic Options → Lightbox Library settings that can turn this on for you.