VeaZna Junior Member
 
![[Avatar]](http://a.deviantart.com/avatars/v/e/veazna.gif) "Pickle Weasil" Posts: 78 Status: Offline Location: Guess... Joined:
pmwww | Remove Underlines in Links (4th Oct 08 at 11:31pm UTC) Resolved | | Is there a code to remove the underlines in the links? | |
|
|
dog199200 Guest | Re: Remove Underlines in Links (5th Oct 08 at 4:08am UTC) | | 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: - <style type="text/css">
- #a .underline{
- display: none;
- }
- </style>
Again not tested. | |
|
Marc vChat Developer
     I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 33 Joined:
Additional Groups: Coding Team
  
pmwww | Re: Remove Underlines in Links (5th Oct 08 at 3:18pm UTC) | | 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.
VeaZna, try this in your global header:
 Code: - <style type="text/css">
- <!--
- a:link{ text-decoration: none; }
- a:hover{ text-decoration: none; }
- a:active{ text-decoration: none; }
- a:visited{ text-decoration: none; }
- //-->
- </style>
| |
rroll.to— Shorten a link, rickroll your friends. |
|
VeaZna Junior Member
 
![[Avatar]](http://a.deviantart.com/avatars/v/e/veazna.gif) "Pickle Weasil" Posts: 78 Status: Offline Location: Guess... Joined:
pmwww | Re: Remove Underlines in Links (5th Oct 08 at 5:55pm UTC) | | thanks Marc | |
|
|
Marc vChat Developer
     I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 33 Joined:
Additional Groups: Coding Team
  
pmwww | Re: Remove Underlines in Links (6th Oct 08 at 1:03am UTC) | | No worries. | |
rroll.to— Shorten a link, rickroll your friends. |
|
dog199200 Guest | Re: Remove Underlines in Links (6th Oct 08 at 3:58am UTC) | | Oh ok i understand, at least I am trying | |
|