How can I modify subheading formats in the Reformation Shopify theme?

Hi,

Can someone direct me to how to change sub-headings formatting for REFORMATION Shopify store theme. I would like to change the font size and letter spacing.

Thanks

  1. Look for a file named something like theme.scss.liquid or styles.scss.liquid. This file contains the CSS code for your theme’s styling.

  2. Open the file and scroll down to find the section related to sub-heading styles. Look for selectors that target sub-headings or headings with specific classes.

  3. Modify the CSS properties for the sub-headings to change the font size and letter spacing. Here’s an example:

.sub-heading {
  font-size: 20px; /* Adjust the font size to your desired value */
  letter-spacing: 1px; /* Adjust the letter spacing to your desired value */
}