Hi all, I know I’m not the first to complain about this, but has anyone found a way to make the logo bigger on the new customer account login page? Or, are there any plans for Shopify to fix this in the near future?
I think it’s kind of ridiculous they have not addressed this yet.
Hi Judy
You’re not alone and yes, it’s frustrating!
Right now, Shopify does not provide a built-in setting to make the logo larger on the new customer account / login page. This is a limitation of the theme structure and Shopify’s account templates.
You can increase the logo size with a small CSS override in your theme (if your theme allows custom CSS). For example:
.customer-login__logo img {
max-width: 250px; /* change to whatever you want */
height: auto;
}
You would add this in:
Theme → Customize → Theme Settings → Custom CSS