Dears,
I'm completely new to Oracle APEX; but I love it.
I found a CSS code (from Google) that allow me to change the login page's logo and background. I used this code:
span.t-Login-logo {
background-image: url(#APP_IMAGES#G20nobackground.png);
background-size: cover;
width: 200px;
height: 200px;
}
.t-PageBody,
.t-PageBody--login {
background-size: cover;
background-repeat: no-repeat;
}
.t-PageBody--login {
background: url('#APP_IMAGES#background.jpg');
}
@media only screen and (max-width: 480px) {
.t-PageBody--login .t-Body {
margin-top: 40px; /* Add some space at the top to be able to see the background image */
background-color: transparent; /* Prevent white background on mobile */
}
}
if this code is not good or old, or long, please advise me.
The result I got is this:

and this is the logo:

Can you please advise me how to fix this issue.
Thank you,