http://sthapa23.epizy.com/HomePage.php

http://sthapa23.epizy.com/HomePage.php

I cannot set background image in the php file tried every possible way

<!DOCTYPE html>
<html>
<head>
<title>Homepage for all the links for Database</title>
        <style>
            html{
                    background:url(img/Books.png);
                    no-repeat center center fixed;
                    background-size:cover;
                }
                .center_button{max-width: 75px;}
        </style>

    
</head>

<body>
</body>
</html>

Maybe you need to apply the styles to the body, and put width and height for both html and body tags to 100%. Also, put this code as the background snippet is not valid like so:

background:url(img/Books.png) no-repeat center center;
background-attachment:fixed;
1 Like

Nope did not work

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.