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

    Hi!

    Im using a typekit plugin to get a custom font to my Headings, i also want to use CSS to control the spacing on my headings.

    Im using the following code, but with no success:

    h1, h2, h3, h4, h5{
    font-family: alternate-gothic-no-3-d !important;
    }
    
    h1 {
        letter-spacing: 4px;
    }

    What am i doing wrong ?
    Thanx!

    #679625

    Hey Paul,

    Thanks for getting in touch with us!

    Try placing the !important tag after the value.

    h1 {
        letter-spacing: 4px !important;
    }

    Best regards,
    Jordan

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