How to remove The Underlines ?

the fanopsis

New Member
hey everyone !
i would like to remove the underline in the Pseudo in what's going on box...
i was looking on my CSS but i didn't found clearly the attribut for the Pseudos cause all other link have decoration: none;
so anyone could help ?


2cejlgw.png
 
Add this to your styles additional css:
Code:
a:link, a:active, a:visited, a:hover {
  text-decoration:none;
}

Note:
This will remove ALL underline decorations on your board
 
Hoxxy said:
Add this to your styles additional css:
Code:
a:link, a:active, a:visited, a:hover {
  text-decoration:none;
}

Note:
This will remove ALL underline decorations on your board

Depends on where you put it. Cascading Style Sheet. So if he puts it in the top then some other value below it will set the text decoration back. So he needs to put it in the bottom of the css just to make sure.
 
when i tried it said


Required variables have gone missing and execution can not continue. Please try again.

This error can sometimes occur as a result of Suhosin / Hardened PHP being installed on your server. If you know that you have Suhosin running and you have access to the PHP configuration, try increasing the value of the following variables:

* php_value suhosin.post.max_vars
* php_value suhosin.request.max_vars
 
Back
Top