Getting image in dashboard

Much earlier in this topic, I shared this snippet:

<style>
    body {
        background-image: url("/my-image.png");
    }
</style>

That is a CSS stylesheet where you can add more CSS rules, for example:

<style>
    body {
        background-image: url("/my-image.png");
        background-size: cover;
    }
</style>
1 Like