How can I decrease the font size of my webpage title?

Hello,

I need to change the size of the title text saying “Features” on this page https://www.popcycleco.com/blogs/news

Any advice to make it smaller would be greatly appreciated.

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.scss.css and paste this at the bottom of the file:
@media screen and (min-width: 769px){
.hero__title, .page-title, .product-title-big, .shopify-policy__title .h1, .shopify-policy__title h1 {
font-size: 35px!important;
}
}

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.

@sumnb0011

Please add the following code at the bottom of your assets/theme.scss.liquid file.

#features #BlogSection h1.page-title{
    font-size: 32px !important;
}

Hope this works.

Thanks!