I am not sure about the first one, but second can be solved by changing type of input from "email" to "text". It is just feature implemented in modern *_browsers_ and not AdminLTE itself.
How you tried to add image background? You should try to find CSS declaration with background color, for example with developer tools of some browser, and then change properties ralated to background.
Yeah
body {
background: url("back.png") no-repeat center center fixed;
background-size: cover;
}
If you look at source code of https://almsaeedstudio.com/themes/AdminLTE/pages/examples/login.html you see background is defined on element with class .login-page, .register-page ... your declarations are probably overwritten. Either use !important: background: url("back.png") no-repeat center center fixed !important; ... Or try to use more specific selector:
.login-page, .register-page {
background: url("back.png") no-repeat center center fixed;
background-size: cover;
}
... that could do it.
Thanks!
No problem, glad I could help, please close issue if it was resolved.
How?
To close the issue, come back to this page. U will see a button close under the form or a button comment and close. Click on the button close or if u want to add a comment click on comment and close
Most helpful comment
If you look at source code of https://almsaeedstudio.com/themes/AdminLTE/pages/examples/login.html you see background is defined on element with class .login-page, .register-page ... your declarations are probably overwritten. Either use !important: background: url("back.png") no-repeat center center fixed !important; ... Or try to use more specific selector:
.login-page, .register-page {
background: url("back.png") no-repeat center center fixed;
background-size: cover;
}
... that could do it.