Hello everyone!
I’m using the Shopify Savor theme and I’ve added a custom font to my website through coding. However, the font in the login form (account login page) is not changing and still shows the default font.
I would like the login form font to match the custom font used on the rest of my website. Could anyone please help me fix this issue? Give me full update code. Thanks in advance!
Store: https://svelteclothes.myshopify.com/
Password: Admin
I’m using the following code:
@font-face {
font-family: “Stereohead”;
src: url(“https://cdn.shopify.com/s/files/1/0717/6831/0072/files/Stereohead.woff2?v=1777386173”) format(“woff2”);
font-weight: normal;
font-style: normal;
font-display: swap;
}
/* THE ULTIMATE UNIVERSAL FONT OVERRIDE
Targeting: Body, Headings, Form elements, Tables, and Shopify Custom Components
*/
,
body, p, a, li, span,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
input, select, textarea, option, button, .button,
.product-badges__badge,
summary,
.details__header,
.email-signup__heading,
.email-signup__input,
.price,
.rte p,
.facet-filters__sort,
.product-count__text,
/ Cart Specific Elements */
text-component,
dt, dd,
.cart-items__variant,
.cart-totals__total-value,
.cart-totals__tax-note,
.cart-totals__tax-note small,
.cart-items__details,
.cart-primary-typography,
.cart-secondary-typography {
font-family: “Stereohead”, sans-serif !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Force Table and List alignment for variants */
.cart-items__variants dt,
.cart-items__variants dd {
font-family: “Stereohead”, sans-serif !important;
font-style: normal !important;
}
/* Ensure the total and subtext in cart are covered */
.cart-totals__total-value,
.cart-totals__tax-note small {
font-family: “Stereohead”, sans-serif !important;
}

