4
Oh ok
In that case
Find the body <body> tag in your XOOPS theme.html file for the themes you want to add this to.
Delete the body tag and put this in its place
le="color: #000000"><?php <body onLoad="StatusLauftext();return true"> <div id="waitDiv" style="position:absolute; right:0%; top:50%; visibility:hidden; text-align:center;"> <table cellpadding="3" cellspacing="3" class="waitbox"><tr> <td align="center"> <b><big>Loading...</big></b> <br />Please Wait.</td></tr> </table> <script type='text/javascript'> <!-- toggle_visibility('waitDiv', 1); //--> </script> </div>
You can change it as you like.
Now, find the </body> tag
Add this just before it
le="color: #000000"><?php <script type='text/javascript'> <!-- toggle_visibility('waitDiv', 0); //--> </script>
Update your theme file and it should work.