Increase the size of slideshow subheadings in Taste theme

Hi, the default subheading text in the Taste theme are minuscule. They match the rest of the site’s body text (which I don’t want to increase to geriatric size). I’d like to be able to make the slideshow subheadings bigger but the theme doesn’t have this option. Where can I find this code?

My website URL is www.watsonpack.com

Please add below css code in bottom of assets/base.css file

.banner__text span {
font-size: 2rem;

}
Thank you.

2 Likes

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >base.css and paste this at the bottom of the file:
.banner__text span{
font-size: 25px;
}
1 Like