Unsupported scripts and control panel web app for a hosting company
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819
  1. <div class="tutbox" id="tut1">
  2. <p>This is a tutorial box! zomg!</p>
  3. <p>To do stuff, you do stuff and then stuff.</p>
  4. </div>
  5. <img src="<?PHP echo CP_PATH; ?>res/overlay.png" id="overlay">
  6. <script type="text/javascript">
  7. tut = document.getElementById('tut1');
  8. tut.style.position = 'absolute';
  9. tut.style.left = document.getElementById('delete').offsetLeft + 150 + 'px';
  10. tut.style.top = document.getElementById('delete').offsetTop - 40 + 'px';
  11. tut.style.zIndex = 2;
  12. img = document.getElementById('overlay');
  13. img.style.position = 'absolute';
  14. img.style.left = 0 + 'px';
  15. img.style.top = 0 +'px';
  16. var arrayPageSize = getPageSize();
  17. img.style.height = (arrayPageSize[1] + 'px');
  18. img.style.width = '100%';
  19. </script>