Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

Comment preview width

coldforgecoldforge New
edited October 2012 in Vanilla 2.0 - 2.8

In the preview tab for new comments, the text flows in a single line off the page, and I can't for the life of me figure out where in the CSS to add a width entry. Can someone tell me how to fix this theme so that comment preview works correctly?

Comments

  • peregrineperegrine MVP
    edited October 2012

    in custom.css add white-space: wrap;

    option 1 around line 582

    div.Preview div.Message, ul.MessageList div.Message {
    font-size: 14px;
    white-space: wrap;
    }

    option 2

    or remove from custom.css on line 178

    white-space: nowrap;

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

Sign In or Register to comment.