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

[F] Remove Underline - Posted By CåñåÐå™ (canada) on 14th Feb 08 at 4:19am
Forum : http://tropolis.virtualforums.co.uk/

Is it possible to have the underline removed from under the Category name and have it between these [ ] <--- please .

Re: Remove Underline - Posted By Michael (wrighty) on 14th Feb 08 at 4:38am
Code:
 
  1. <script type="text/javascript">
  2. for(i=0; i<get('td','tag').length; i++){
  3.     if(get('td','tag')[i].className=='title2' && get('td','tag')[i].colSpan=='3'){
  4.         get('td','tag')[i].getElementsByTagName("a")[1].removeAttribute("href");
  5.         get('td','tag')[i].getElementsByTagName("font")[0].innerHTML = "[" + get('td','tag')[i].getElementsByTagName("font")[0].innerHTML + "]";
  6.     }
  7. }
  8. </script>
 


Main footer! {Smile}

Re: Remove Underline - Posted By CåñåÐå™ (canada) on 14th Feb 08 at 7:10am
Thank you Wrighty it works fine {Grin} .