Reduce line height on icons with text | Broadcast Theme

Hello,

I wish to reduce the line height on ALL the title of the section below :

My URL : www.ambigoose.com

Thank you

Jon

hello @JonX

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media only screen and (max-width: 1900px){
#shopify-section-1627965498ed254d53 .icon__column__text h2 {
    line-height: 23px  !important;
}
}

Hi @Kinjaldavra

Thank you so much that is perfect

Jon

@JonX

please try this code

  1. Go to Online Store->Theme->Edit code

  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.

@media only screen and (max-width: 1900px){
#shopify-section-1627965498ed254d53 .icon__column__text h2 {
    line-height: 23px  !important;
}
}

Thanks!