The standard login page can be given visual flair and branding by using a custom background image.
1 | Create the imageFiles should:
Keep the file size as small as possible while keeping the best quality. | |
2 | Upload the image to your |
This may require technical support. Alternatively, you can host the image on any external hosting provider; LearningBuilder just needs a way to reference it via URL. |
Configure the relevant tenant’s Custom CSS using this code:
.url-account-login #responsive-main { background: url(/Content/client_assets/DEFAULT/login-desktop.jpg); background-size: cover; } .login-table-content { background: rgba(255, 255, 255, .5); border: 3px solid #eeeeee; padding:10px; } |
Be sure to change the link on line 2 to your folder and image name
Be sure to change the link on line 2 to your folder and image name
Line 6 sets the background color / opacity behind the left side content blocks so that text is legible against the background. If you don’t need this, delete lines 6 through 10.
Line 6 sets the background color / opacity behind the left side content blocks so that text is legible against the background. If you don’t need this, delete lines 6 through 10.