Change the color of one letter in a word

Hi there,

You can change the first letter in a word by using the below CSS:

.newsletter h2::first-letter {
  color: red;
}

Adding the CSS at the end of your base.css file should render as the following screenshot.

I couldn’t find the ‘F’ in the body section, however, a similar approach should work.

Cheers!