Change image size (login,splash,navbar)

Hey

I’v installed erpnext version 14

and changed website settings (all images)
But the size is looking small in and i want to change the css for the splash screen login img and brand img (max-height)

1 Like

Same issue here… my customers brand is much bigger than the current spashscreen size :smiley:

1 Like

Hi,
Go to the website settings and scroll down to the custom CSS change the max-height of the image.

CSS Code:

/* Change max-height of login screen image */
#login_image img {
    max-height: 200px; /* Change value as needed */
}

/* Change max-height of brand image */
#navbar-breadcrumbs .navbar-brand img {
    max-height: 50px; /* Change value as needed */
}

Thank you.

3 Likes

thank you