Help Me Remove UNDERLINE DECORATION on Forum Name

TsuQi

New Member
Help Me Remove UNDERLINE DECORATION on Forum Name

Example :

vB 3.8.X Releases [Release Candidate]

How to make like this

vB 3.8.X Releases [Release Candidate]

dont have UNDERLINE DECORATION
 
Add this to your styles additional css box:
Code:
a:link,a:visited,a:active {
   text-decoration:none;
}

a:hover {
  text-decoration:underline;
}

This will remove ALL the underlines for links but will show one when hovering over it :)
 
Hoxxy said:
Add this to your styles additional css box:
Code:
a:link,a:visited,a:active {
   text-decoration:none;
}

a:hover {
  text-decoration:underline;
}

This will remove ALL the underlines for links but will show one when hovering over it :)

aaaah my old friend
hoxxxy love u thanks

muach
 
To remove underline in Forum Category > go to AdminCP> Styles & Templates> Style Manager then in your Forum go to >All Style Option on the drop down arrow select Main CSS and click go, now scroll down to >First Altenating Color
then in Normal Links CSS under Text Decoration type in none then next to it under Visted Links CSS under Text Decoration type in none now save CSS, go back to you forum press CTRL F5 at the same time (that's hard reset)and all underlines are gone.

Hope this will help you.
 
Back
Top