Hi again @gymjam,
Great question. The free version of this theme doesn’t include custom fonts, but you can still use CSS to tweak these types of things.
For the smaller text in the caption, you can use something like this (adjusting the actual values to whatever you like):
.frontpage-banner .caption {
color: green;
font-size: 16px;
font-family: Raleway;
}
For the larger text/heading, this should work:
.frontpage-banner .caption h2 a {
color: green;
font-size: 48px;
font-family: Raleway;
}
And if you also want to change the color of the little divider, you can do that like this:
.frontpage-banner .caption h2:before {
color: green;
}
If you need any help customizing this further, or have questions about any other areas, just let us know!