hardeyboyz Ok, I can see the problems. First of all, the path to the CSS should be _files/css/custom.css
not _files/custom/custom.css
like you have. It has always been like that, as specified in the docs:
https://www.files.gallery/docs/css-styling/
Also, you need to remove the <style>
tags from your CSS file. You have this:
<style>
.page-login-body {
height: 500px;
background-image: url("images/wall.png");
background-position: center;
background-repeat: no-repeat;
background-size: 100% 98%;
}
</style>
It should be:
.page-login-body {
height: 500px;
background-image: url("images/wall.png");
background-position: center;
background-repeat: no-repeat;
background-size: 100% 98%;
}