SSRS Reports not rendering Franklin Gothic font in Microsoft Edge or Chrome but will in Firefox

Juston Dixon 21 Reputation points
2022-08-31T23:24:34.493+00:00

Our branding standards require Franklin Gothic font for headers and such. When the report renders in Edge and Chrome I see the font-family: 'Franklin Gothic Medium Cond' but it does not look like Franklin Gothic. Firefox renders just fine. Any thoughts on how to fix this issue?

SQL Server Reporting Services
SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
3,063 questions
Microsoft Edge | Microsoft Edge development
0 comments No comments
{count} votes

Accepted answer
  1. Anonymous
    2022-09-01T04:54:27.08+00:00

    Hi, @Juston Dixon ,

    I've tested 'Franklin Gothic Medium Cond' in both Edge, IE, Chrome and Firefox. It turns out that this font works well in IE and Firefox, but does not render in Edge and Chrome (the default font renders instead). It looks like Chromium-based browsers haven't supported this font yet, but they do support 'Franklin Gothic Medium'.
    However, here's a workaround for you by making it a web font (if you can edit CSS):
    Add a rule to your css file. For example:

    <style>  
        @font-face {  
        font-family: 'franklin_gothic_medium_cond';  
        /* Enter your font file name as the url */  
        src: url('Franklin Gothic Medium Cond Regular.ttf');  
        font-weight: normal;  
        font-style: normal;  
    }  
        body {  
        /* Same name as in the @font-face rule */  
        font-family: 'franklin_gothic_medium_cond';  
    }  
    </style>  
    

    PS: Make sure the font file is placed under the same folder as your css/html file.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Best Regards,
    Shijie Li

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.