Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Typekit fonts much bolder in Firefox Re: Typekit fonts much bolder in Firefox

#114022
ollyb
Member

I had tried `font-weight: 400` already, it didn’t work, so `normal` was just the last thing I’d tried.

Anyway, I’ve fixed it now. `font-weight` was being applied to a parent div:

`

This header was rendered with font weight 700

`
.crete{font-weight: 400}

Whereas this actually works:

`

This header was rendered with font weight 400

`
h2{font-weight: 400}

Might help someone. Or maybe it was just me being rubbish!