Hello
Sharing with you this tricks
When I place image on the login page, it is display well on pc, but on mobile it do not.
Here solution given by ChatGPT
<style>
/* Styles par défaut pour l'affichage sur PC */
body {
background-image: url("images/geigroupe_bg.png");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
background-size: cover;
}
/* Media query pour les écrans mobiles */
@media only screen and (max-width: 768px) {
body {
background-image: url("images/rendoo.png");
margin-top: 50px;
background-position-y: 400px;
background-repeat: no-repeat;
background-size: 100%;
}
}
</style>