Shopify themes, liquid, logos, and UX
I'm using the Dawn theme, and I've added a custom font using custom code from a YouTube tutorial. It was working fine, and when viewed on an Android device, it looked great. Here's the reference.
.
Look at the heading font - it was fine on Android. Here's the same website viewed on iOS; every browser displays it like this
How to rectify this, please help with me, it was an urgent
Website Link: https://2512in.myshopify.com/password
Password: 2512
Thanks in advance
Please share the custom code you added to add your custom font.
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Thanks for the reply @Dan-From-Ryviu , here's the code.
{% if section.settings.enable %}
<style data-custom-fonts>
{% assign items = section.blocks | reverse %}
{% for block in items %}
{% assign name = block.settings.name %}
{% assign url = block.settings.custom_font_url %}
{% assign custom_font_weight = block.settings.custom_font_weight %}
{% assign custom_font_style = block.settings.custom_font_style %}
{% assign apply_h1 = block.settings.apply_h1 %}
{% assign apply_h2 = block.settings.apply_h2 %}
{% assign apply_h3 = block.settings.apply_h3 %}
{% assign apply_h4 = block.settings.apply_h4 %}
{% assign apply_h5 = block.settings.apply_h5 %}
{% assign apply_h6 = block.settings.apply_h6 %}
{% assign apply_span = block.settings.apply_span %}
{% assign apply_p = block.settings.apply_p %}
{% assign apply_custom = block.settings.apply_custom %}
{% if url != blank and url != "" %}
{% capture _font_type %}
{% if url contains ".otf" %}
opentype
{% elsif url contains ".ttf" %}
truetype
{% elsif url contains ".svg" %}
svg
{% elsif url contains ".woff2" %}
woff2
{% else %}
woff
{% endif %}
{% endcapture %}
{% assign font_type = _font_type | strip %}
@font-face {
font-family: '{{ name }}';
src: url({{ url }}) format('{{ font_type }}');
{% if custom_font_style != 'none' %}
font-style: {{ custom_font_style }};
{% endif %}
{% if custom_font_weight != 'none' %}
font-weight: {{ custom_font_weight }};
{% endif %}
}
{% if apply_h1 %}
h1{
font-family: '{{name}}' !important;
}
{% endif %}
{% if apply_h2 %}
h2{
font-family: '{{name}}' !important;
}
{% endif %}
{% if apply_h3 %}
h3{
font-family: '{{name}}' !important;
}
{% endif %}
{% if apply_h4 %}
h4{
font-family: '{{name}}' !important;
}
{% endif %}
{% if apply_h5 %}
h5{
font-family: '{{name}}' !important;
}
{% endif %}
{% if apply_h6 %}
h6{
font-family: '{{name}}' !important;
}
{% endif %}
{% if apply_p %}
p{
font-family: '{{name}}' !important;
}
{% endif %}
{% if apply_span %}
span{
font-family: '{{name}}' !important;
}
{% endif %}
{% if apply_custom != "" and apply_custom != blank %}
{{ apply_custom }}{
font-family: '{{name}}' !important;
}
{% endif %}
{% endif %}
{% endfor %}
</style>
{% endif %}
{% schema %}
{
"name": "Jahin Custom Font",
"settings": [
{
"type": "header",
"content": "Made by (https://www.crotemplateslibrary.com/)"
},
{
"type": "paragraph",
"content": "Replace apps with copy/paste code snippets like this one & save money. [Click here for more tutorials.](https://www.crotemplateslibrary.com/)"
},
{
"type": "checkbox",
"id": "enable",
"label": "Enable",
"default": true
}
],
"blocks": [
{
"type": "image",
"name": "Font",
"settings": [
{
"type": "header",
"content": "Made by (https://www.crotemplateslibrary.com/)"
},
{
"type": "text",
"id": "name",
"label": "Custom font name",
"info": "Use only lower or upper characters from A-Z. No numbers, no special characters, no spaces.",
"default": "customfont"
},
{
"type": "select",
"id": "custom_font_weight",
"label": "Font weight",
"info": "If you're unsure, use \"none\".",
"default": "none",
"options": [
{
"value": "none",
"label": "None"
},
{
"value": "normal",
"label": "Normal"
},
{
"value": "bold",
"label": "Bold"
},
{
"value": "100",
"label": "100"
},
{
"value": "200",
"label": "200"
},
{
"value": "300",
"label": "300"
},
{
"value": "400",
"label": "400"
},
{
"value": "500",
"label": "500"
},
{
"value": "600",
"label": "600"
},
{
"value": "700",
"label": "700"
},
{
"value": "800",
"label": "800"
}
]
},
{
"type": "select",
"id": "custom_font_style",
"label": "Font style",
"info": "If you're unsure, use \"none\".",
"default": "none",
"options": [
{
"value": "none",
"label": "None"
},
{
"value": "normal",
"label": "Normal"
},
{
"value": "italic",
"label": "Italic"
}
]
},
{
"type": "text",
"id": "custom_font_url",
"label": "Custom font URL",
"info": "Add all URLs for this font here, one per line. Upload your fonts to the [files panel](/admin/settings/files)."
},
{
"type": "paragraph",
"content": "Apply the custom font to the following HTML elements:"
},
{
"type": "checkbox",
"id": "apply_h1",
"label": "H1",
"default": true
},
{
"type": "checkbox",
"id": "apply_h2",
"label": "H2",
"default": true
},
{
"type": "checkbox",
"id": "apply_h3",
"label": "H3",
"default": true
},
{
"type": "checkbox",
"id": "apply_h4",
"label": "H4",
"default": true
},
{
"type": "checkbox",
"id": "apply_h5",
"label": "H5",
"default": true
},
{
"type": "checkbox",
"id": "apply_h6",
"label": "H6",
"default": true
},
{
"type": "checkbox",
"id": "apply_span",
"label": "<span> tags",
"info": "Apply this custom font to all HTML span elements.",
"default": true
},
{
"type": "checkbox",
"id": "apply_p",
"label": "<p> tags",
"info": "Apply this custom font to all HTML paragraph elements.",
"default": true
},
{
"type": "textarea",
"id": "apply_custom",
"label": "CSS Selectors",
"info": "Apply font to custom CSS selectors. Example: .custom-text,.wrapper > h1",
"placeholder": ".my-text"
}
]
}
]
}
{% endschema %}
Tutorial link: https://www.crotemplateslibrary.com/blogs/shopify-liquid-coding-tutorial/how-to-add-custom-fonts-in-...
Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025