That's not what I was looking for, If you look on vBulletin's forum there is a gap between the username and usetitle where as on here
Animemike
Coder/Designer
Not
Animemike
Coder/Designer
--------------- Added [DATE]1280439814[/DATE] at [TIME]1280439814[/TIME] ---------------
I sorted it, Incase anybody wants to know change this in postbit.css
On the name gap css [ css.ph...box.css (line 897) ], you've got:
.postbitlegacy .userinfo .username_container {
margin-bottom:8px;
}
You can split those three classes into two groups (e.g.):
.postbitlegacy .userinfo {
margin-bottom:8px;
}
.username_container {
margin-bottom: 0px;
}
|