1. Is there a way to change the color of the text used for the album title as it appears on the landing page for my site? I've been digging around with settings from both the jalbum base settings as well as Story setting looking for a way to control the text color and just can't find anything. The issue is that the text is too light to standout when the background image is also somewhat light.
Trickier, but also fixable. The color of that text, and its border, are tied to the style you've chosen, in this case,
White. You could choose a different style, but that would change a whole raft of other things at the same time, so it would be quite a trip down the rabbit hole.
To target just that text and border color, head for
Story > Advanced > Custom code > CSS, and enter this:
.hero .cont.dark.border .title h1 {
color: #ff0000;
}
.hero .cont.dark.border .title {
border-color: #ff0000;
}
I've chosen red in this case, just to make it really obvious that it's having the intended effect. You could, of course, choose different colors for the text and the border.