Sub-label running off the page

  • minemetitiri
    Asked on February 11, 2016 at 1:12 PM

    How do I correct this issue below? I fix it then is comes back.

    Maybe I just don't know what I am doing, professionals, help this novice.

    Thanks!

     

    Sub label running off the page Image 1 Screenshot 20

  • Nik_C
    Replied on February 11, 2016 at 4:13 PM

    Hello there, 

    May i propose a different solution, because you have a large text, maybe it would be better to expand text area width to match whole form width.

    My proposal looks like this

    Sub label running off the page Image 1 Screenshot 40

    To achieve this you need to add custom css, to do this, go to Prefferences 

    Sub label running off the page Image 2 Screenshot 51

    Then click on 1.Form styles tab 2. Inject custom CSS.

     

     

    Sub label running off the page Image 3 Screenshot 62

    Add these lines of CSS to selected field and you should get the same results like in the example picture i posted.

    Be careful to only add CSS, because if you remove some code from this field you might get some unexpected design changes.

    .form-textarea {

    width:100%;

    }

    .form-textarea-limit-indicator label

    {    

    text-align:left;

    }

    Please let me know if this works for you.

     

    Best regards

     

  • minemetitiri
    Replied on February 12, 2016 at 5:16 PM

    Thank you, this helped!