Logo on login pop-up

6
I am having problems replacing the logo on the login pop-up. How do I replace the logo? I am still learning css, so please be gentle on me.
asked
1 answers
10

In your deployment directory there is a layout.css file.

You can open it in notepad or similar program to edit the css.

Find

.mendixLogin_logoPane
{
height: 60px;
background: transparent url(images/layout/your image.jpg) no-repeat scroll center center !important;
}

and replace the default image with your image

answered