Hello Everyone!
I’m using the Shopify Sense theme and I’ve added custom fonts through custom coding. Currently, both the heading font and body font appear to be the same, but the heading font doesn’t look clear enough.
I want the heading font to keep the same font-family as the body font while maintaining proper heading styling, especially the correct font-weight and font-style so that it looks clearer and more readable. Please help me. Thank you.
Store: https://urbanglowingstore.myshopify.com/
Password: Admin
I’m using the following code:
@font-face {
font-family: “Sephora_Hayden”;
src: url(“https://cdn.shopify.com/s/files/1/0717/6831/0072/files/Sephora_Hayden.woff2?v=1777383734”) format(“woff2”);
font-weight: normal;
font-style: normal;
font-display: swap;
}
/* ULTIMATE CUSTOM FONT FIX FOR SAVOR THEME */
body, p, a, li, span, h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.product-badges__badge,
summary,
.details__header,
.email-signup__heading,
.email-signup__input,
input,
select,
option,
button,
.button,
.price,
.rte p,
.facet-filters__sort,
.product-count__text {
font-family: “Sephora_Hayden”, sans-serif !important;
}
