Columns width not updated on form preview

  • IC_Hong_Kong
    Asked on October 8, 2014 at 5:01 AM

    I had this problem and managed to find a workaround.

    Use the code !important in the CSS after where you declare the width. e.g.

     

    .form-checkbox-item { width: 215px !improtant;} 

     

    Seems like it might be a hierarchy issue, maybe width is being declared after the CSS?

    Hope this helps.

  • jedcadorna
    Replied on October 8, 2014 at 8:50 AM

    Thank you for sharing this. It could be a hierarchy since using !important bypass those priorities or ignore rules.