-
Notifications
You must be signed in to change notification settings - Fork 257
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hosting fonts locally? #44
Comments
For hosting locally, using font-face will do the job, https://www.w3schools.com/cssref/css3_pr_font-face_rule.asp So we can make a folder, say foo and then save/upload all the font files there. and then in https://github.com/hemangsk/Gravity/blob/master/css/style.scss Just do
And then you can use it to modify the fonts of the website, by changing the font-family properties. Ideally I should have used SCSS, but since we've plain CSS in Gravity, you can just to da Ctrl + F and search for font=family, which will get you all the usage of font-family, modify wherever you need to change the font. Let me know if this works |
Gotcha, so I can place this anywhere in the style.scss?
What about lines 8 and 9 in the head.html?
Should I modify this in some way or simply remove it entirely? edit: to be clear, I like the fonts you have by default. I just want to host them locally rather than force readers browsers to fetch them from another domain. |
You can place it anywhere you like but preferred place to define is on top, as it has to be defined before usage. |
Great. I placed it on line 24 on the style.scss. Then downloaded this font: Then restarted jekyll. But it didn't seem to work. When I inspect elements in the browser, I can see the fonts.ttf was loaded without error (Status 200). Any debugging advice for me? I didn't make any major chances to the head.html. |
Just realized I said "error". It's not an error, I meant the .ttf gets loaded in the browser properly but the fonts don't take effect on the site for some reason. I also realize this isn't directly a Gravity theme issue. Would appreciate your help if you get some time. If not, probably safe to close this issue. |
Hey, I thought abt the reason and couldn't find a possible reason why this might be happening, if the status is 200. So I assume there are the steps,
Now this step,
This should have got it working unless CSS has some voodoo of using "PT Sans" instead of 'PT Sans' if the former is used in font-face |
Using single quotes totally worked! Thank you! |
Hey, I'm a complete html and css noobie. What's the easiest way to host the website fonts from the root of my jekyll site? Which lines in which files should I modify?
And thanks for Gravity, it's the best jekyll theme I've see yet.
The text was updated successfully, but these errors were encountered: