How do I change the font of the customer login, create account, and sign in on my website?

How do I change the font of the customer login, create account, and sign in on my website?

ConnorG
Visitor
3 0 0

Can anyone help?

Replies 5 (5)

no_robotocha
Shopify Partner
58 2 19

What theme are you using @ConnorG ?

--
No, Robotocha!
ConnorG
Visitor
3 0 0

ella theme 

no_robotocha
Shopify Partner
58 2 19

Typography can be changed / added as per: https://halosoft.gitbook.io/ella-documentation/theme-settings/typography

 

You can add custom CSS in the Customizer or in the theme files to target specific elements like the inputs as you like.

--
No, Robotocha!
ConnorG
Visitor
3 0 0

what would the custom css be? Im new to shopify so this is all foreign concepts for me. thank you for your help

no_robotocha
Shopify Partner
58 2 19

This isn't Shopify specific - you can use standard CSS as you would on any site. For instance:

 

Looking at the Ella demo theme, the form fields are contained in a div with the class .form-field so you could do:

.form-field {
  font-family: Arial, sans-serif;
}

 

Screenshot 2024-05-08 at 16.52.30.png

--
No, Robotocha!