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
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
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.
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.
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 */
}