The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.

User locations can break the box

Mr. ButtonsMr. Buttons Registered User regular
edited July 2012 in H.Q. Reception Desk
07292012.png

Chrome 20.0.1132.57 m, just in case it's not a problem for others

Mr. Buttons on

Posts

  • shadowaneshadowane Registered User regular
    Happens in Firefox 14.0.1 on Ubunut as well.

  • BarrakkethBarrakketh Registered User regular
    edited August 2012
    Workaround:
    span.AuthorTitle {
        overflow: hidden;
        max-width: 130px;
        text-overflow: ellipsis;
        display: inline-block;
    }
    

    Barrakketh on
    Rollers are red, chargers are blue....omae wa mou shindeiru
  • EndEnd Registered User regular
    alternately to fix wrapping:
    .AuthorInfo .MItem {
        white-space: normal;
    }
    

    probably would want to apply that with overflow so that wrapping is possible, but if there are no spaces, it gets cut off instead

    I wish that someway, somehow, that I could save every one of us
    zaleiria-by-lexxy-sig.jpg
  • BarrakkethBarrakketh Registered User regular
    End wrote: »
    alternately to fix wrapping:
    .AuthorInfo .MItem {
        white-space: normal;
    }
    

    probably would want to apply that with overflow so that wrapping is possible, but if there are no spaces, it gets cut off instead
    Applying it to span.AuthorTitle works, it wraps without needing to change overflow.

    Learnin' about new CSS properties every day :bz

    Rollers are red, chargers are blue....omae wa mou shindeiru
Sign In or Register to comment.