How to make the font bigger in the subheading?

How can I make the font bigger in the home subtitle?

I had its max in the typography setting but seems small, I want it much bigger.

I am using Pipeline theme. See attached screenshot:

Hello There,

Please share your store URL and Password.
So that I will check and let you know the exact solution here.

Here is the preview link

https://gpx4wss6v6iw6csc-57868746799.shopifypreview.com

Hello There,

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

Hi @jmariegocela

I might have the solution for the issue, you can follow these steps to fix:

In your Shopify Admin click to:

  1. Online store > Themes > actions > Edit code
  2. Go to Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
[id] .brick__product__subheading{
    font-size: 16px !important
}

@media (max-width: 749px){
    [id] .brick__product__subheading{
    font-size: 15px !important
}
}

Then change the font size as your demand:

The recommend size are:

  • 16px = font size on desktop
  • 15px = font size on mobile

I hope it helps. Thank you