Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #594999

    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?

    #595006

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.