Venture Theme - Change Font Size in Section Title

Hi,

Please can someone assist me.

I would like to change the font size of a section in Venture theme.

In the screenshot below, I would like to change the title “BRANDS WE WORK WITH” to be the same font size as “OUR MISSION AT ELECTRIC RIDE CO.” which is 36px.

Thanks in advance.

www.electricrideco.com

@guyv , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
@media (min-width: 750px){
    .custom-content h1{
       font-size: 2.25em !important;
}
}

    .custom-content h1{
       font-size: 1.75em !important;;
}

Kind regards,
Diego

@diego_ezfy

Thanks for your quick reply!

The code works but it is the wrong way round. I would like to change the title “BRANDS WE WORK WITH” to be the same font size as “OUR MISSION AT ELECTRIC RIDE CO.” which is 36px.

The code you gave me made both titles the same font size as “BRANDS WE WORK WITH”.

@guyv ,

Please follow the previous steps and use this code instead:

.section-block__title{
    font-size: 36px !important;
}

@media (max-width:750px){
    
.section-block__title{
    font-size: 30px !important;
}
}

Kind regards,
Diego

@diego_ezfy

Thanks a lot for your help! Much appreciated!