Need help with custom list widget

  • TXEd
    Asked on June 26, 2018 at 12:11 PM

    I only have three fields, all text boxes. I would like them to be wider. I tried applying this custom css but it didn't change the width:
    .textarea {
    margin: 3px 0;
    min-width: 200px;
    }

    What do you suggest?

  • Jan
    Replied on June 26, 2018 at 1:30 PM

    The CSS selector that you are using is incorrect. Please remove the "." since it is not a class or an id. Here's the correct code:

    textarea {
    margin: 3px 0;
    min-width: 200px;
    }

    Here's the result:

    153003417906 27 0fpt2 Screenshot 10

    Hope that helps. Let us know if you need further assistance. Thank you.