I already managed to change several elements of my own application (for example elements of the SAP Shell) by creating an extra stylesheet and including that stylesheet by inserting the following statement to my index.html
<script>
jQuery.sap.includeStyleSheet("http://<PATH TO APPLICATION>/css/custom.css", "custom");
</script>
But obviously that method doesn't work for the login page since I tried to change the background image by inserting the following to my css file:
#loginContainer {
background-image: url("http://<PATH_TO_APPLICATION>/WebContent/images/bckimage.jpg");
}
Do you know which css class I have to address or if it is even possible to change several items of the login page using that method?
Regards,
Stefan