enten/hyde-y

How can I change the main font?

Closed this issue · 2 comments

I want to change the font's family or size.

enten commented

In your project folder, creates file layouts/partials/head-extra.html and writes your font imports and your custom CSS.

That file will be included before the end tag </head>.

Example of content for your head-extra.html

<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<style>
body {
  font-family: 'Open Sans';
}
</style>

Thanks, it works.