Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Change login background image

mbouchiJul 31 2019 — edited Jul 31 2019

Hallo all,

Im trying to add background image to my login page. When I write my css code in my login page in Apex (inline css) it works fine, but if I write my css code in a file and then upload the file into my user interface (css file url), the background image does not work!

any tipps ?

Im using Apex 19.1

my css code looks like:

html::before{

        content:'';

        background: url(#WORKSPACE_IMAGES#1080p.jpg) no-repeat center center fixed;

        height:100%;

        width:100%;

        position:fixed;

        -webkit-background-size: cover;

        -moz-background-size: cover;

        -o-background-size: cover;

        background-size: cover;

    }

Regards

Mohamed.

This post has been answered by fac586 on Jul 31 2019
Jump to Answer
Comments
Post Details
Added on Jul 31 2019
5 comments
390 views