Changing Font in Webpage

Hello, I forked the github repo from David Darnes found here: GitHub - daviddarnes/alembic: ⚗️ A Jekyll boilerplate theme designed to be a starting point for any Jekyll website I used this for my own website, but I am trying to change font sizes and styles in it, does anyone know how to do this? My github repo is found here: GitHub - rachaelph/rachaelph.github.io: Github Pages template for academic personal websites, forked from mmistakes/minimal-mistakes and my webpage is adventurewithrachael . com, let me know if you know which of the files I need to edit, I have been searching, but haven’t figured it out yet. Thank you!

You can try to change the font URL here to load the specific Google Fonts you want.

You then need to set the font family for the website here

You can find all information on which files are loading CSS and font files here

1 Like

How do you change the colors of the font in different areas?

You can always write locally something like:

 <style>p { color: blue; }</style>

anywhere in Jekyll’s content region, will effect the entire page. A hack, no doubt, but maybe sufficient.