SOLVED

Custom font on landing pages only displaying on Mac?

Go to solution
Anonymous
Not applicable

Custom font on landing pages only displaying on Mac?

We are trying to launch a new landing page template, and have specified a non-standard font to use on the pages (Gotham SSm). However, the font is only showing up in browsers (Chrome, Firefox, Safari) on Mac. Those same browsers on PC (and also IE) show Helvetica/Arial.

Here is the code we have specifying to add the font:

<link href="https://www.instant.ly/css/ce/fonts/149381/AD116F7D4F9AF23F3.css" rel="stylesheet" type="text/css">

<script language="JavaScript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>

<style type="text/css">

@font-face {
   font-family: "Gotham SSm";
}

#bodyId {
background: #fff;
font-family: "Gotham SSm", Helvetica, Arial, sans-serif;
font-size: 14px;
text-align: center;
margin: 0px;
padding: 0px;
}

And here is a WIP landing page test page:

http://pages.instant.ly/LP---Instantly-Templates_LP---Faux-Site---V2.html

What could be the cause for this issue, and how can we solve it?

Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Custom font on landing pages only displaying on Mac?

The name of the font as declared in your CSS is actually "Gotham SSm A".

View solution in original post

2 REPLIES 2
SanfordWhiteman
Level 10 - Community Moderator

Re: Custom font on landing pages only displaying on Mac?

The name of the font as declared in your CSS is actually "Gotham SSm A".
Anonymous
Not applicable

Re: Custom font on landing pages only displaying on Mac?

Thanks so much!  I appreciate your help and second set of eyes. I feel a little silly - sometimes it's the obvious stuff that slips by us!