Custom Fonts in Blogs

Jan//Apprezo
Written by Jan//ApprezoLast updated 1 year ago

You may want to incorporate custom fonts beyond the default options when setting up your blog. Here’s a step-by-step guide to help you customize fonts in your blog.


Default Custom Fonts

To add a custom font when creating or updating your blog, follow these steps:

  1. Open the font drop-down menu and select Custom Fonts.

  1. A pop-up will appear where you can either select a previously used font or choose a new custom font.

  1. Select your desired font and then click Save to apply the changes to your blog.


Setting Up Custom Fonts Using CSS

If your chosen font is unavailable by default, you can use custom CSS to add it to your blog. However, this might require developer assistance, as we do not provide custom font codes.

The most reliable method to add an unavailable font is by using the @font-face rule. Here’s an example of how to do it:

  1. While in the blog editor, click the Insert Custom Code icon.

  1. Paste the following sample code and click Insert Code:

html

Copy code

<style>

  @font-face {

    font-family: 'Festive', cursive;

    src: url('https://fonts.googleapis.com/c...');

  }


  * {

    font-family: 'Festive', cursive;

  }

</style>



Important Notes:

  • Outlook Compatibility: When working with email clients like Outlook 2007, 2010, and 2017, make sure to wrap the @font-face rule in a @media tag since these versions don’t natively support custom fonts.

  • Custom Value: You can also copy the custom font code to create a custom value. This value can be reused in multiple places within your blog.


FAQs

  1. How do I save a custom font after selecting it?

    • After choosing your custom font from the pop-up menu, click Save to apply the changes to your blog. This will ensure your chosen font is reflected in your blog.

  2. Can I reuse a custom font in other parts of my blog?

    • Yes! Once a custom value for the font code is created, it can be applied throughout your blog, ensuring consistent font usage across different sections.

  3. What is the @font-face CSS rule, and why is it used?

    • The @font-face rule allows custom fonts to be loaded on your blog, even if the font isn’t available on the user’s device. It specifies the font-family name and the URL of the font file, enabling custom font integration.

  4. How can I ensure my custom font works across all devices and browsers?

    • To ensure compatibility, use widely supported font formats and include a @media tag, especially for email clients like Outlook. Testing on various browsers and devices is also recommended to confirm proper display.

  5. Can I use multiple custom fonts in the same blog?

    • Absolutely! Adding multiple @font-face rules in your CSS and assigning different font-family names allows you to apply various fonts to different sections of your blog.

  6. What should I do if the custom font doesn’t appear after adding it?

    • If the custom font isn’t displaying correctly, check your CSS code for errors, ensure the font URL is accurate, and verify browser compatibility. Refreshing the page or clearing the cache can also help resolve font display issues.


Did this article help you solve your issue?

Apprezo Helpdesk - Help Center

© 2026 Apprezo Helpdesk - Help Center. All rights reserved.