How to make the Login Pane have fixed position

0
I would like to have the login box on the login page have a fixed position at the top of the page, rather than floating as I scroll down the page. Any pointers?
asked
2 answers
1

You can use FireBug in FireFox. Right-click on the form and 'inspect element with firebug' open the css part and watch which properties define the position. Change them in the css files. Be sure to use the correct level in the hierarchy.

answered
1

Hai Mike, like Chris said you can do this easily by inspecting the element in Firebug and create some custom styling in your theming. With some css skills it should be easy. Here is a start to add in your stylesheet:

.mendixLogin {
          position:absolute;
          top:0 !important;
}

The !important overrides the default position in the center of the page.

answered