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,
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;
}
}
please try this code
Go to Online Store->Theme->Edit code
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!