PDA

View Full Version : In postbit under to username


sbarbz
05-16-2008, 03:08 PM
In postbit under to username there is a bottom underline

How I lower this?

Images :
http://img502.imageshack.us/img502/4672/19670363ux9.jpg
I indicated in the red square

Lynne
05-16-2008, 03:38 PM
It's hard to know without seeing the source code, but I would guess you can modify the css for the class .bigusername:
.bigusername { font-size: 14pt; }to
.bigusername { font-size: 14pt; text-decoration: none;}That will remove the underline anywhere the class .bigusername is used. If that doesn't work, you may need to add a new class there ".bigusername a" with that style info.
You can also add "none" under the text decoration part of the Main CSS for just alt2 and that may work also.

sbarbz
05-16-2008, 03:54 PM
Tnx :)