Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #298200

    I’m sorry to ask you but I have a problem on a site with the ‘Century Gothic’ font. I have already read some forum articles and tried, but it did not help. On my Mac everything is perfect but on a windows PC it shows an Arial Font, no matter what browser I use (IE, FF, Chrome). Do you have an idea waht’s the solution?

    Kind regards and thanks for your help
    René

    The website ist : cocosam.ch
    I already copied these lines into the file ‘functions.php and selected the font in the General Styling options:

    add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
    function avia_add_heading_font($fonts)
    {
    $fonts[‘Century Gothic’] = ‘Century Gothic’;
    return $fonts;
    }

    add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
    function avia_add_content_font($fonts)
    {
    $fonts[‘Century Gothic’] = ‘Century Gothic’;
    return $fonts;
    }

    #298554

    Hey René!

    It doesn’t work because Century Gothic is not available as a Google Font, you can only include Google Fonts using that method, it works on your Mac because you probably have it installed there.

    As an alternative i’d suggest this Google Font which is very similar to Century Gothic:
    http://www.google.com/fonts#UsePlace:use/Collection:Muli

    If you want to include non-Google fonts you can use this plugin, but be aware that these won’t appear in the Theme Options, instead you’d need to assign them manually via CSS.

    Cheers!
    Josue

    #299301

    Hi Josue, Thank you for your reply, that helps me a lot.

    Regards
    René

    #299310

    Glad Josue could help. Let us know if you have any other questions or issues.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Font "Century Gothic" is not displayed on Windows Computer’ is closed to new replies.