vForums Support > Programming & Coding :: Code Requests & Support :: > Remove Underlines in Links

Remove Underlines in Links - Posted By VeaZna (veazna) on 4th Oct 08 at 11:31pm
Is there a code to remove the underlines in the links?

Re: Remove Underlines in Links - Posted By dog199200 (dog199200) on 5th Oct 08 at 4:08am
Give me a bit and i'll try to come up with somethign for you, no promises though

Edit:

OK try this in your Global Footer:

Code:
 
  1. <style type="text/css">
  2. #a .underline{
  3. display: none;
  4. }
  5. </style>
 


Again not tested.

Re: Remove Underlines in Links - Posted By Marc (cr0w) on 5th Oct 08 at 3:18pm
Dwight, the # symbol in CSS looks for the ID of an object. If searching for a tag, simply put the tag name with no symbol preceding it. {Wink}

VeaZna, try this in your global header:

Code:
 
  1. <style type="text/css">
  2. <!--
  3. a:link{ text-decoration: none; }
  4. a:hover{ text-decoration: none; }
  5. a:active{ text-decoration: none; }
  6. a:visited{ text-decoration: none; }
  7. //-->
  8. </style>
 


{Smile}

Re: Remove Underlines in Links - Posted By VeaZna (veazna) on 5th Oct 08 at 5:55pm
thanks Marc {Smile}

Re: Remove Underlines in Links - Posted By Marc (cr0w) on 6th Oct 08 at 1:03am
No worries. {Smile}

Re: Remove Underlines in Links - Posted By dog199200 (dog199200) on 6th Oct 08 at 3:58am
Oh ok i understand, at least I am trying