Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML HTML Basics Getting Started with HTML Creating Lists

Lauren Packer
Lauren Packer
383 Points

hey guys. im building a website and i changed the font of an h3. it took the font but changed the font size small

the font is Georgia', Georgia, Utopia, 'Palatino Linotype', Palatino, serif and additionally, there is margin: .75em 0 0 code with the font. what am i missing? the font used to be trebuchet.

You can customize the font-size using css

3 Answers

Chris Mennens
Chris Mennens
4,710 Points

While this an older comment I would recommend sharing a link to a Codepen as this really make 10 times easier to assist you when looking at your issue.

Lauren Packer
Lauren Packer
383 Points

The &#39 was part of the trebuchet i don't know what to do with it.

HTML: Group description="Post Title" selector="h3.post-title, .comments h4"> <Variable name="post.title.font" description="Font" type="font" default="normal normal 22px Georgia', Georgia, Utopia, 'Palatino Linotype', Palatino, serif" value="normal normal 22px &#39;Georgia &#39;,Georgia', Georgia, Utopia, 'Palatino Linotype', Palatino, serif"/> </Group>

CSS:

h3.post-title, .comments h4 { font: Georgia', Georgia, Utopia, 'Palatino Linotype', Palatino, serif; margin: .75em 0 0;

thank you for your help!