make image banner heading larger CSS in dawn theme

Hello, im wondering if for the image banner section - is it possible to make the heading larger with CSS?

i have it set to ‘large’ from the section settings but it is still quite small we would love to have it bigger

thank you

Hi @tahliahanke

You can add this CSS code to Custom CSS of Image banner section to make heading larger.

h2 { font-size: 48px; }

Hello @tahliahanke ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your base.css file and paste the following code at the bottom:

.banner__heading { 
    font-size: 8rem !important;
}

Thanks