CSS Fix for long names
I ran into a situation with a user with a really long name. If the same happens to you, use the code below and it will add a "..." so the point board looks cleaner 
    li.plbanchor
    a {
    max-width:130px;
        display:inline-block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
                7          
            
        
            
Comments
How long was the username?
long! they used almost the whole alphabet
Something like Fumisorisupirepakanishteraki?
My shop | About Me
no...it's not that. It was a bitcoin address
 I guess he's thinking I'll donate 
nice tip.
I have never used ellipsis ever, so thanks.
http://www.w3schools.com/cssref/tryit.asp?filename=trycss3_text-overflow
There was an error rendering this rich post.
This saved the day for me. Thanks for the great tip.