desgner changes not effecting change in form view

  • max123jot
    Asked on July 30, 2016 at 8:24 AM

    input 123

    "dear attending..."

     

    i modified the width of the text label to about 600 in designer and looks right

    saved it

    but in form view looks unchanged

    please advise

  • liyam
    Replied on July 30, 2016 at 9:57 AM

    Hello max123jot,

    I checked your form's settings and it's actually set to 800px. What it needs is the !important property at the end of the width value, so the CSS code should look like this:

    .form-label-top, .form-label-left, .form-label-right {
       background : none;
       border : none;
       padding : 0;
       width : 800px !important;
    }

    Anyway there is no need for you do to the changes as I went ahead and fixed it :)

    Feel free to let us know if you have other questions.

    Warm regards :D 

  • max123jot
    Replied on July 30, 2016 at 4:45 PM
    thanks
    m
    ...