Viewing 1 replies (of 1 total)
  • Plugin Author DanielSchurter

    (@danielschurter)

    Hi bamort

    Generally DMSGuestbook is inherit the global font-type from your theme style.css. DMSGuestbook has no font type in the code.

    Nevertheless you can add a font-type file in DMSGuestbook: Open …/plugins/dmsguestbook/admin.php with an editor and insert following code at the beginning of file:

    <link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'>
    <style>
    body {
    	font-family: 'Ubuntu', sans-serif;
    }
    </style>

    It’s not a good way to insert that and there is no guaranty for working, because older browser won’t support this.
    You can see whether the font-family is active with a toll like Firebug for Firefox.

    More Information about font-family and css:
    https://www.google.com/fonts/
    https://www.w3schools.com/css/css3_fonts.asp
    https://stackoverflow.com/questions/12144000/using-custom-fonts-using-css

    Greetings,
    Dani

Viewing 1 replies (of 1 total)
  • The topic ‘How to add google fonts for posts and message boxes?’ is closed to new replies.