Multiline text field width

Forums Classic DFFS Multiline text field width

Viewing 1 reply thread
  • Author
    Posts
    • #8416
      Kristoffer Bertsch
      Participant

      Hello!
      I am using the styling suggested for multi columns and I wanted to increase the width of the multiline plain text fields. I am using:
      .sbs_FieldTable .dffs_tdWrap *{
      width:auto !important;
      }
      .sbs_tdIndex_1, .sbs_tdIndex_2, .sbs_tdIndex_3, .sbs_tdIndex_4{
      min-width:200px !important;
      width:200px !important;
      How would I increase the width?

      As always I appreciate the help!
      -Kris

    • #8420
      Alexander Bautz
      Keymaster

      Hi,
      The code you use targets the <td> and not the <textarea>

      Use this format to set any textfield in column 1 to 4 in a site-by-side configuration:

      .sbs_tdIndex_1 textarea, .sbs_tdIndex_2 textarea, .sbs_tdIndex_3 textarea, .sbs_tdIndex_4 textarea{
      	width:400px !important;
      }

      Hope this helps,
      Alexander

Viewing 1 reply thread
  • You must be logged in to reply to this topic.