Jump to content

Custom not appearing on mobile

Go to solution Solved by paul2009,

Recommended Posts

Hi everyone! I am currently developing my graphic design portfolio, and have run into a bit of issue with custom fonts. Although the custom font that I'm using (Brandon Grotesque) looks good on desktop, for some reason, it's not showing up on mobile (specifically iOS). Instead of displaying Brandon Grotesque, it displays a serif font. Any tips or suggestions about how I could fix this?

Site: https://www.ellajenkinsdesigns.com/

*Edit: It seems like the font is also not showing up on Safari on my computer. Still looks fine on Chrome though 😕

Edited by ejenks
Link to comment
  • Solution
35 minutes ago, ejenks said:

Although the custom font that I'm using (Brandon Grotesque) looks good on desktop, for some reason, it's not showing up on mobile.

Hi

When a font is not showing up on mobile, this suggests that the font hasn't been setup in Squarespace properly using CSS. (If the same font is installed on your computer, the font is probably being loaded from there when you test it on the desktop.)

Here are some basic troubleshooting steps to get you started:

  1. Check that the font name you assigned in your @font-face rule (within Custom CSS) is a continuous string (without spaces) like brandon-grotesque or that it has been placed in quotes, like 'Brandon Grotesque'.
  2. Check that the font name in your @font-face rule (described above) uses exactly the same name throughout the CSS. For example, if you used font-family: brandon-grotesque in your font-face at-rule, you should use this exact format when you set the font-family for your h1 or h2 and so on. If you used font-family: 'Brandon Grotesque', you should use this instead.

You may need to save the CSS and reload the page to see if these steps have helped.

Did this help? Please give feedback by clicking an icon below  ⬇️

Edited by paul2009

About me: I've been a SQSP User for 18 yrs. I was invited to join the Circle when it launched in 2016. I have been a Circle Leader since 2017. I don't work for Squarespace. I value honesty, transparency, diversity and good design ♥.
Work: I founded and run SF.DIGITAL, building Squarespace Extensions to supercharge your commerce website. 
Content: Views and opinions are my own. Links in my posts may refer to SF.DIGITAL products or may be affiliate links.
Forum advice is free. You can thank me by clicking one of the feedback emojis below. Coffee is optional.

Link to comment
  • 2 weeks later...
  • 2 weeks later...

Hi @paul2009 I'm having a similar issue, but our css appears correct/ labels the font the same way in each occurrence. Any other ideas as to why our font may be appearing strangely on mobile devices? It looks correct on desktop browsers, and when we test with the mobile icon on a desktop. It's only when we're on an actual mobile device where the font changes, and a weird artifact happens where it looks like the font is layered 2-3 times. 

SITE: https://www.alliswellstudios.com/about

CODE :

@font-face {
    font-family: 'GTAmericaBold';
       src: url('https://static1.squarespace.com/static/640254492f4ddd03f446b1a3/t/6423560b2409b21c0435b6a4/1680037387766/GT-America-Standard-Bold.otf');}

h1 {font-family: 'GTAmericaBold';}
h2 {font-family: 'GTAmericaBold';}
h3 {font-family: 'GTAmericaBold';}
h4 {font-family: 'GTAmericaBold';}

 

 

desktop-type.png

mobile-type.PNG

Edited by AIW
url update
Link to comment
  • 2 months later...

Hi, I am having issues with a font not appearing on my phone, however it looks as it should on the live site on my desktop and on both squarespace editing views, desktop and mobile. I have gone in a changed it, then changed it back and saved and it still seems to not be working. Here are some pics. The cursive font that says "Vocal Effects" is as it should be and the plain font saying "Vocal Effects" is how it's looking on my phone. IMG_8214.thumb.PNG.e56c3bd8c370594aae8e2e8199e49710.PNG

This is how it's supposed to look: IMG_8213.thumb.jpg.b346694d9660046c28c3859551886f72.jpg

Any advice would be so appreciated. Thanks, Christie : )

 

Link to comment
On 6/3/2023 at 10:35 AM, ChristieD said:

Hi, I am having issues with a font not appearing on my phone, however it looks as it should on the live site on my desktop and on both squarespace editing views, desktop and mobile. I have gone in a changed it, then changed it back and saved and it still seems to not be working. Here are some pics. The cursive font that says "Vocal Effects" is as it should be and the plain font saying "Vocal Effects" is how it's looking on my phone. IMG_8214.thumb.PNG.e56c3bd8c370594aae8e2e8199e49710.PNG

This is how it's supposed to look: IMG_8213.thumb.jpg.b346694d9660046c28c3859551886f72.jpg

Any advice would be so appreciated. Thanks, Christie : )

 

Can you share link to this page? We can check easier

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment
  • 4 months later...

I'm seemingly in the same boat and need a code assist to make my custom font work on mobile.  Thanks in advance for any help you can give me.  I appreciate it.

diademflowers.com

@font-face {

    font-family: 'Kinfolk';

       src: url('FontUhttps://static1.squarespace.com/static/5e6812bd4469345cf9dd85b0/t/63a54f2bcb6dbc0745a500ed/1671778091644/FontsFree-Net-Kinfolk_Reg.ttfRL');

  }

h1, h2, h3 {
    font-family: 'Kinfolk' !important;
}

Link to comment
5 hours ago, colleenraney said:

I'm seemingly in the same boat and need a code assist to make my custom font work on mobile.  Thanks in advance for any help you can give me.  I appreciate it.

diademflowers.com

@font-face {

    font-family: 'Kinfolk';

       src: url('FontUhttps://static1.squarespace.com/static/5e6812bd4469345cf9dd85b0/t/63a54f2bcb6dbc0745a500ed/1671778091644/FontsFree-Net-Kinfolk_Reg.ttfRL');

  }

h1, h2, h3 {
    font-family: 'Kinfolk' !important;
}

 

Replace your code with the code below.

@font-face {
    font-family: 'Kinfolk';
    src: url('https://static1.squarespace.com/static/5e6812bd4469345cf9dd85b0/t/63a54f2bcb6dbc0745a500ed/1671778091644/FontsFree-Net-Kinfolk_Reg.ttf');
}

h1, h2, h3 {
    font-family: 'Kinfolk' !important;
}

 

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

Link to comment
  • 3 weeks later...

Hi there, 

This solution isn't fixing the font on mobile for me. I tried to adjust the file and the code to not have spaces, but that caused the desktop font to disappear so I kept the quotes around it.  I'd love your opinions. website is mountainoven.com

Thanks in advance!

Here is my code:

font-face {
font-family: 'Muara Rough';
src: url('https://static1.squarespace.com/static/64a8450ebdbb364ed6bc3b4d/t/653417e709a7de5b879d2390/1697912808640/Muara+Rough.otf');
    }
h1 {font-family: 'Muara Rough';}

Edited by Kgendron
Link to comment
On 11/9/2023 at 10:07 PM, Kgendron said:

Hi there, 

This solution isn't fixing the font on mobile for me. I tried to adjust the file and the code to not have spaces, but that caused the desktop font to disappear so I kept the quotes around it.  I'd love your opinions. website is mountainoven.com

Thanks in advance!

Here is my code:

font-face {
font-family: 'Muara Rough';
src: url('https://static1.squarespace.com/static/64a8450ebdbb364ed6bc3b4d/t/653417e709a7de5b879d2390/1697912808640/Muara+Rough.otf');
    }
h1 {font-family: 'Muara Rough';}

You didn't add @ sign before the font-face. Also if you use TTF file instead of OTF file then it will work perfectly.

here is the link to download the TTF file

https://static1.squarespace.com/static/63f08707a1ab1979c11e7d14/t/654d0d8581e6680da1a3a37c/1699548554401/Muara-Rough.ttf

Screenshot_370.png

Edited by Web_Solutions

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

Link to comment
1 hour ago, leahlind said:

Hello! I am new to CSS, but am having the same issue. My h2 font (About Us) is not showing up on mobile but works fine on desktop. I have tried the solutions, but i must be missing something. Any suggestions or help would be much appreciated. Thanks in advance!

Site: https://masterpiece-pools.squarespace.com

IMG_6033.PNG

 

You have made some error on your code. I have fixed it. Replace all your code with the below code.

@font-face {
    font-family: 'JuliusSansOne-Regular';
    src: url(https://static1.squarespace.com/static/651b0f22a845bd64b0e89d93/t/651b13b67ed2717966f0e821/1696273334308/JuliusSansOne-Regular.ttf);
}
@font-face {
    font-family: 'Ephesis';
    src: url(https://static1.squarespace.com/static/651b0f22a845bd64b0e89d93/t/651b26736254fc42e9de6bd2/1696278131625/Ephesis-Regular.ttf);
}


h1, h4, .sqs-block-button-element, .button.sqs-system-button.sqs-editable-button, .a.btn, input.button, .user-items-list .list-section-title p {
    font-family: 'JuliusSansOne-Regular' !important;
}

h3, h2 strong em {
    font-family: 'Ephesis' !important;
}

h2 strong em {
    font-weight: 400;
    font-style: initial;
    font-size: 4.6rem;
}

.user-items-list .list-section-title p {
    color: #3b6c7f;
}

.form-wrapper .checkbox .option {
    float: left !important;
    width: 30% !important;
}

.sqs-block-button-element:hover {
    background-color: #fff !important;
}

#collection-634d2451e98a0b7dbaa88e44 h2 {
    font-size: 8vw;
}

@media only screen and (max-width: 640px) {
    h2 {
        font-size:2rem;
        line-height: 1.3;
    }
}

div.header-nav-item>a:hover,div.header-nav-folder-item>a:hover {
    border-bottom: 1px solid #000;
}

div.header-nav-folder-item>a {
    display: inline-block;
}

.header-actions .btn:hover {
    background-color: #bae3e8;
    color: #3b6c7f !important;
    opacity: 1 !important;
}

 

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

Link to comment
  • 1 month later...

Hi Paul,

I am really struggling with my custom font. When I view my website on my MacBook in desktop view and mobile view, the font is perfect. When I open my Squarespace app on my iPhone to view my website, the font is completely different. 
 

All my CSS cording appears correct. The fonts are uploaded as ttf.
 

I have not yet published the website. 


I will be so grateful for all your help. 

Link to comment
34 minutes ago, SabrinaTayla90 said:

I am really struggling with my custom font.

What is the site URL? It isn't included by default when you post 🙂

About me: I've been a SQSP User for 18 yrs. I was invited to join the Circle when it launched in 2016. I have been a Circle Leader since 2017. I don't work for Squarespace. I value honesty, transparency, diversity and good design ♥.
Work: I founded and run SF.DIGITAL, building Squarespace Extensions to supercharge your commerce website. 
Content: Views and opinions are my own. Links in my posts may refer to SF.DIGITAL products or may be affiliate links.
Forum advice is free. You can thank me by clicking one of the feedback emojis below. Coffee is optional.

Link to comment
  • 2 months later...

Hi! I am also having a similar issue with my custom font 'Botanica'. It works fine on desktop but does not show up correctly on mobile or tablet. Here is my website URL and code snippet below:

www.gonzalezcaicedowedding.com 

@font-face {
    font-family: 'Brown Sugar';
    src: url('https://static1.squarespace.com/static/641377c923334d1a80dffdeb/t/64d1b0ce22c9037a026c2f97/1691463887061/Brown+Sugar+.ttf');
}
@font-face {
    font-family: 'Brown Sugar';
    src: url('https://static1.squarespace.com/static/641377c923334d1a80dffdeb/t/64d1b0ce22c9037a026c2f97/1691463887061/Brown+Sugar+.ttf');
}
@font-face {
    font-family: 'Brown Sugar';
    src: url('https://static1.squarespace.com/static/641377c923334d1a80dffdeb/t/64d1b0ce22c9037a026c2f97/1691463887061/Brown+Sugar+.ttf');
}
h1 {
    font-family: 'Brown Sugar' !important;
    letter-spacing: .05em;
}
h2 {
    font-family: 'Brown Sugar' !important;
}
h3, h4 {
    font-family: 'Botanica' 
!important;
}
 p, {
    font-family: 'josefin sans' 
!important;
}
.header-title-text, .header-menu-nav-item--collection {
    font-family: 'Brown Sugar' !important;
}
.portfolio-hover-item-content {
    font-family: 'Botanica' 
!important;
    letter-spacing: .5px;
    font-size: 40px;
}

Link to comment
On 2/17/2024 at 3:26 AM, CreateEveryday said:

Hi! I am also having a similar issue with my custom font 'Botanica'. It works fine on desktop but does not show up correctly on mobile or tablet. Here is my website URL and code snippet below:

www.gonzalezcaicedowedding.com 

@font-face {
    font-family: 'Brown Sugar';
    src: url('https://static1.squarespace.com/static/641377c923334d1a80dffdeb/t/64d1b0ce22c9037a026c2f97/1691463887061/Brown+Sugar+.ttf');
}
@font-face {
    font-family: 'Brown Sugar';
    src: url('https://static1.squarespace.com/static/641377c923334d1a80dffdeb/t/64d1b0ce22c9037a026c2f97/1691463887061/Brown+Sugar+.ttf');
}
@font-face {
    font-family: 'Brown Sugar';
    src: url('https://static1.squarespace.com/static/641377c923334d1a80dffdeb/t/64d1b0ce22c9037a026c2f97/1691463887061/Brown+Sugar+.ttf');
}
h1 {
    font-family: 'Brown Sugar' !important;
    letter-spacing: .05em;
}
h2 {
    font-family: 'Brown Sugar' !important;
}
h3, h4 {
    font-family: 'Botanica' 
!important;
}
 p, {
    font-family: 'josefin sans' 
!important;
}
.header-title-text, .header-menu-nav-item--collection {
    font-family: 'Brown Sugar' !important;
}
.portfolio-hover-item-content {
    font-family: 'Botanica' 
!important;
    letter-spacing: .5px;
    font-size: 40px;
}

You haven't declared @font-face for Botanica yet

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment
17 hours ago, CreateEveryday said:

I thought it was declared for h3, h4? How do I declare it?

It is custom font or Squarespace font? If custom font, you need to add a code like this

@font-face {
	font-family: Botanica;
	src: url(upload Botanica font to your site and paste font file url here);
}

 

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment

Hmm I too am having the same issue of custom font appearing on the desktop site and preview of the mobile site but not on my actual iPhone. I initially uploaded the otf file (which worked for desktop), then tried both otf and ttf...if anyone has any pro tips for the mobile version I'd greatly appreciate it 🙂. Below is my code.

 

@font-face{ 
font-family: 'paperlane';
src:
url(https://static1.squarespace.com/static/65a8981e4856083a4c3f6c33/t/65d7f844c8b03007c917b181/1708652612155/Paperlane-Regular.otf);}

@font-face{ 
font-family: 'paperlane';
src:
url(https://static1.squarespace.com/static/65a8981e4856083a4c3f6c33/t/65d7f83c87964c3ca6fe3c0e/1708652604496/Paperlane-Regular.ttf);}

h1,h2, h4 {
font-family: 'paperlane'!important;}

Link to comment

Hi! I'm also having issues getting my custom font to show on mobile view and desktop on Safari. On Chrome desktop everything looks as it should but no luck otherwise.

https://solandsand.co

Everything seems to look right code wise, but here's my code for your reference:
 

/**ADD CUSTOM FONT**/

//Headings:Brewery Pro
@font-face {
    font-family:'Brewery Pro'!important; src:url('https://static1.squarespace.com/static/61a35a410b6008246ef90b89/t/65df753671d3ea1fb3719661/1709143350257/Linotype-BreweryPro-Bold.woff') format('woff');
}
        
h1, h2, h3, h4, .user-items-list .list-section-title, .list-item-content .list-item-content__title, .blog-basic-grid--text .blog-title, .grid-main-meta .grid-title, .newsletter-form-header .newsletter-form-header-title, .blog-item-title .entry-title.entry-title--large.p-name{
    font-family:'Brewery Pro';
    letter-spacing:.025em;
    line-height: 1em;
}

//Headings:Luminaire Script
@font-face {
font-family:'Luminaire Script'!important; src:url('https://static1.squarespace.com/static/61a35a410b6008246ef90b89/t/65df736a74a7475879cfc1c9/1709142890585/LuminaireScript-Regular.woff') format('woff');
}

//Headings & Paragraph:Gill Sans Nova SemiBold
@font-face {
font-family: 'Gill Sans Nova SemiBold'; src: url('https://static1.squarespace.com/static/61a35a410b6008246ef90b89/t/65df7392be757d5b056f0447/1709142930894/GillSansNova-SemiBold.woff') format('woff');
}

 

Thank you for your help!

Screenshot 2024-02-28 at 3.01.18 PM.png

Screenshot 2024-02-28 at 3.01.30 PM.png

Edited by ncast21
added viewable link
Link to comment
On 2/26/2024 at 10:40 AM, cookiemonster said:

Hmm I too am having the same issue of custom font appearing on the desktop site and preview of the mobile site but not on my actual iPhone. I initially uploaded the otf file (which worked for desktop), then tried both otf and ttf...if anyone has any pro tips for the mobile version I'd greatly appreciate it 🙂. Below is my code.

 

@font-face{ 
font-family: 'paperlane';
src:
url(https://static1.squarespace.com/static/65a8981e4856083a4c3f6c33/t/65d7f844c8b03007c917b181/1708652612155/Paperlane-Regular.otf);}

@font-face{ 
font-family: 'paperlane';
src:
url(https://static1.squarespace.com/static/65a8981e4856083a4c3f6c33/t/65d7f83c87964c3ca6fe3c0e/1708652604496/Paperlane-Regular.ttf);}

h1,h2, h4 {
font-family: 'paperlane'!important;}

The font files url doesn't exist. If you copy url and paste on browser, it will show nothing.

You try upload new one & replace url again

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.