Tagged: CSS, Fonts, letter-spacing, spacing, typekit
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!
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