Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was looking to change the font on my blog and ran into the suggestions here.

I am wondering what the right way to specify that the Akzidenz-Grotesk font be used in my blog. For example, I know that to get the Palatino family going, I would need to add the following line to my style.css:

font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;

What is the equivalent version for this font? I tried

body, input, textarea {
    color: #373737;
    font: 15px  "Akzidenz-Grotesk", "Akzidenz-Grotesk", Akzidenz-Grotesk, serif;
    font-weight: 300;
    line-height: 1.625;
}

which (unsurprisingly) did not work.

share|improve this question
Berthold fonts are not allowed to be used externally in blogs and web pages. – Berthold Nov 26 '12 at 16:11
@Berthold That doesn’t answer the question (that is why I converted it to a comment), and the asker doesn’t even mention a public use. – toscho Nov 26 '12 at 16:14

migrated from wordpress.stackexchange.com Nov 26 '12 at 16:14

1 Answer

The name to be used in the font-family value is either the full name of the font or the PostScript name. They can be found in the name table of the font as corresponding to nameID values 4 or 6. These values can be determined using the DTL OTMaster Light program, provided of course that you have font available in your computer.

However, most computers in the world have no such font. Besides, font names are protected as trade marks only as far as commercial distribution is considered, so there might be free fonts under a name like “Akzident Grotesk” that have no resemblance to the font you have in your mind.

Repeating the same name, or writing it first with and then without quotation marks, does not help. Trying different spellings, like Akzidenz Grotesk, might have an impact.

I wonder why you would use serif as a fallback for a font that is a sans-serif font even by its name, or why you would use a very large line height for it. Using a font weight like 300 makes sense only if you expect the font family to contain, in the computers of your visitors, a typeface with weight 300, or with some other weight smaller than normal (400).

It might be best if you explained what you expected to achieve by declaring the font.

share|improve this answer
I hadn't seen this reply till just now. Your fourth paragraph makes complete sense and I just grabbed the closest bit of CSS code. I was not aware that Akzidenz Grotesk was a protected font. Since then, I have been going through the Google free fonts for alternatives, but if you are aware of a similar looking free font, I am all ears. The font name is purely to change the look of my WP site. The information in your first paragraph is new to me and very useful. – fg nu Nov 27 '12 at 18:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.