vForums Support > Programming & Coding :: Code Requests & Support :: > [F] Content Below Information

[F] Content Below Information - Posted By Fel!x (felix) on 16th Feb 08 at 9:45am
Is there anyone who is able to create a code to add content below the
Quote:
All times are ### :: The current time is #:##am
This Forum is Powered By vForums
Get your own Free Remotely Hosted Message Board
This page was generated with # database queries and # cache files in # seconds.


By content I mean HTML etc. being allowed & it should have no space below it and the bottom of the page.

Thanks in advance, and I Smiley whoever does this!

Re: Content Below Information - Posted By Michael (wrighty) on 16th Feb 08 at 11:57am
Code:
 
  1. <div id="text_end">
  2. Text here. Can use HTML! :)
  3. </div>
  4.  
  5. <script type="text/javascript">
  6. /*Text at bottom of forum
  7. Created By Wrighty */
  8. function base_text(){
  9.     document.body.appendChild(document.getElementById('text_end'));
  10. }
  11. if(document.addEventListener){
  12.     window.addEventListener('load', base_text, false);
  13. }else{
  14.     window.attachEvent('onload', base_text);
  15. }
  16. </script>
 


edit: Text here. Can use HTML! {Smile}

with the text you want to use! {Smile}

Re: Content Below Information - Posted By Fel!x (felix) on 16th Feb 08 at 12:33pm
Thanks Wrighty xD