I would like to change the fonts for the style. I tried looking the code up in your stylesheet.
Like for the Pagetitle und Description I would like to use a Googlefont.
And change font und size for headings and text. And I am not getting into it. XD
Oh and how do I remove or reduce the spacing betweet the title header lines? My titles always take more than one line and it looks somehow waste with so much space between them.
The most direct way of adding custom fonts in WordPress is by adding the fonts using CSS3 @font-face method. This method allows you to use any font that you like on your website.
The best place to upload the fonts is inside a new “fonts” folder in your theme or child theme‘s directory.
Once you have uploaded the font, you need to load the font in your theme’s stylesheet using CSS3 @font-face rule like this:
Don’t forget to replace the font-family and URL with your own.
After that you can use that font anywhere in your theme’s stylesheet like this:
.h1site-title {
font-family: "Arvo", Arial, sans-serif;
}
Loading fonts directly using CSS3 @font-face is not always the best solution. If you are using a font from Google Fonts or Typekit, then it is best to serve the font directly from their server for optimal performance.