Skip to main content
beatriz.winn
Contributor ⭐️⭐️⭐️
August 10, 2026
Solved

Login Page with an Image

  • August 10, 2026
  • 1 reply
  • 26 views

Our community is private, is there a way to add a background image to the login page? all ideas, workarounds will be appreciated! 

 

Best answer by akhilv

You can do this using Custom CSS! Here's a sample:

/* background for login page */
body.private-register {
background-image: url('YOUR_IMAGE_URL_HERE') !important;
background-size: cover;
}

Just swap in your image URL and you can style it further if needed!

1 reply

akhilv
Gainsight Employee ⭐️
akhilvAnswer
Gainsight Employee ⭐️
August 10, 2026

You can do this using Custom CSS! Here's a sample:

/* background for login page */
body.private-register {
background-image: url('YOUR_IMAGE_URL_HERE') !important;
background-size: cover;
}

Just swap in your image URL and you can style it further if needed!