Postbit Font Size

N

Nabix

Guest
The font size in the post_bit killing me. lol Anything over 10 characters is indented. Makes the pb's look cluttered.
 
I believe 20px should do it. This would at least help keep longer usernames from breaking the bit. I'm not sure how Xenforo uses its CSS repos but the class is:

From:

Code:
.message-name {
    font-weight: 500;
    font-size: inherit;
    text-align: center;
    margin: 0;

To:

Code:
.message-name {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    margin: 0;

Also might help to increase the margin of the bit to prevent longer usernames from breaking, without the need to change the font size.
 
  • Like
Reactions: LETA
I believe 20px should do it. This would at least help keep longer usernames from breaking the bit. I'm not sure how Xenforo uses its CSS repos but the class is:

From:

Code:
.message-name {
    font-weight: 500;
    font-size: inherit;
    text-align: center;
    margin: 0;

To:

Code:
.message-name {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    margin: 0;

Also might help to increase the margin of the bit to prevent longer usernames from breaking, without the need to change the font size.
Done! Thank you very much :D
 
Lol on sleezy mode, the online indicator is incorrectly positioned lol fyi.

#bugmaster
 
  • Like
Reactions: LETA