vForums Support > Programming & Coding :: Code Requests & Support :: > [F] Category

[F] Category - Posted By CåñåÐå™ (canada) on 19th Jan 08 at 4:39am
Would it be possible for me to get an code to center the Category Title please {Grin} .

Re: Category - Posted By Dranew (Dranew) on 19th Jan 08 at 4:56am
I don't know if there is an easier way to do this, but this works for me ^^

Code:
 
  1. <script type="text/javascript">
  2. <!--
  3.  
  4. var cat = document.getElementsByTagName('td')
  5.  
  6. for(c=0;c<cat.length;c++) {
  7.  
  8. if(cat[c].className == "title2" && cat[c].colSpan == "3" && cat[c].getElementsByTagName('a')[1].href.match(/category/) != -1) {
  9.  
  10. var catTitle = cat[c].innerHTML;
  11.  
  12. cat[c].innerHTML = "<center>"+catTitle+"</center>";
  13.  
  14. }
  15.  
  16. }
  17.  
  18. //-->
  19. </script>
  20.  
 

Re: Category - Posted By CåñåÐå™ (canada) on 19th Jan 08 at 5:58am
Thank you Dranew it work perfectly {Grin} .

Re: Category - Posted By Dranew (Dranew) on 19th Jan 08 at 6:11am
your quite welcome {Smile}