vForums Support > Programming & Coding :: Database of Codes/Hacks/Mods :: Code Submissions :: > Change News Name

Change News Name - Posted By Nick (nickb) on 9th Nov 08 at 4:29am
This code will change the "news" Part to anything you want.

Code:
 
  1. <script type="text/javascript">
  2. <!--
  3. /*Change News name
  4. Please do not repost
  5. http://icodes.vforums.co.uk
  6. http://support.vforums.co.uk*/
  7.  
  8. var forum_news = document.getElementById("forum_news").parentNode.previousSibling;
  9.  
  10. forum_news.innerHTML = forum_news.innerHTML.replace('News','What ever you want');
  11.  
  12. //-->
  13. </script>
 


Change the red part to what ever you want.

forum_news.innerHTML.replace('News','What ever you want');