Symmetry Theme: How to adjust subheading text on homepage slideshow

Hi there, I’m using the Symmetry theme and can’t figure out how to adjust the thickness of the subheading text in the homepage slideshow, there are no options for subheadings in the Theme Settings under ‘typography’

Any help would be appreciated, thanks!

Hi @VVBDA

You can increase the font size of the subheading by adding the following code at the bottom of your assets/styles.scss.liquid or assets/theme.scss.liquid file

.overlay-text__subheading {
  font-size: 20px;
}

Hope this works.

Thanks for your help on this, is there a way to make it bold as well?

Hi @VVBDA

To make it bold you can use the following code

.overlay-text__subheading {
  font-size: 20px;
  font-weight: bold;
}

This worked perfectly, thanks so much!