Change width of th textbox in Configurable List

  • TJOPSTIM
    Asked on September 25, 2018 at 4:02 AM

    How do I change the width of the Job Detail field in the configurable widget? I cannot get the css code right?

  • roneet
    Replied on September 25, 2018 at 7:39 AM

    To change the width of the textarea you may place the following CSS:

    textarea {
        width: 200px!important;
      }

    Change width of th textbox in Configurable List Image 10

    I see you have already placed the CSS. One thing is missing in your code that is !important text after the pixel that you have defined in your width property.

    Also, you may drag the text area by clicking at the bottom-right of the field to increase the width of the text area.

    Hope this helps!

    Thanks.