Hi,
I want to reduce letter spacing on my headlines, I am using this in custom css box:
h1 {
letter-spacing: -3px;
}
I was able to change body text, but with headlines this is not working.
Can you help me out?
Hi goads!
There are a few different type of headlines please right click and inspect to confirm if it is h1 or h2 or h3 then add an !important rule to your CSS.
Example
h1, h2, h3 {
letter-spacing: -3px!important;
}
Cheers!
Vinay Kashyap