So I want to make for each user profile your background. And how can I do this? DLE engine

    1 answer 1

    Something like this:

    <script type="text/javascript"> document.body.bgColor = "<?php echo $user_bg; ?>"; </script> 

    Or even easier ...

     <body bgColor = "<?php echo $user_bg; ?>"> 
    • But where exactly should it be inserted and how to use it to set the background for the user? - Fanta