Remove the UnderLine from the Current Active User's Members

Ab.Nath

New Member
How to remove the Underline from the Current Active User's Names

It looks Odd and Displeasing where the Underline is there under all the user name's under the Current Active User's

Does anyone Know How to remove them
Thanks
Ab.Nath

[HACK is working for vb 3.6.8 , BUt not in VB 3.7.0
What to do to remove those disgusting Lines from them ]
 
Add this to additional css found in style manager
Code:
A:link,A:visited {
text-decoration: none
}
A:hover {
text-decoration: none
}

be aware this will remove all underlines on your forum.
 
Thanks for making it Hoxxy

Also the Underline from Private messages got erased
But NP

I needed that :)
Thanks
 
Ab.Nath said:
IT IS WORKING in vb 3.6.8

But NOt in vB in vB 3.7.0

what will i do to remove this in vB 3.7.0
Thanks

It should work in 3.7.x its only css, if you have changed your style you may have forgotten to add it....

Heres a better version of above code
Code:
A:link,A:visited,A:hover {
text-decoration:none;
}
 
No Hoxxy
It is NOT working

I had done evrything
Added the Aditional CSS in the boxes

But it is Still the Same , the UnderLines are visible
 
Back
Top