Viewing 5 replies - 1 through 5 (of 5 total)
  • I’m not sure if you mean the textarea boxes, but if you are….input, textarea is set to width of 153px. The box will expand when needed (if someone makes a really long comment), or you can adjust the width in the above example.

    Don’t know what you mean by “switch”, but you have an explicit width on all those inputs via this CSS selector:

    input, textarea {
    margin: 0;
    background: #4A525A;
    border: 1px solid #999;
    border-top: 0;
    width: 153px; <------------------------------------
    padding: 3px 0 2px 5px;
    color: #fff;
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    }

    Look for this in the css file:

    input, textarea {
    margin: 0;
    background: #4A525A;
    border: 1px solid #999;
    border-top: 0;
    width: 153px;
    padding: 3px 0 2px 5px;
    color: #fff;
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    }

    Change width: 153px; to whatever width you want.

    Damn! I type too slow. ??

    Thread Starter xerocool

    (@xerocool)

    Thanks guys.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Rows wont expand..’ is closed to new replies.