Found the reason the wrapping is not occurring.
Their are read only fields with the class “dffs-readonly-inner” which seem to set the min-width before the form is resized e.g. style=”min-width: 1500px” instead of style=”min-width: 500px”.
As a temporary fix I have added the following CSS:
.dffs-readonly-inner {
min-width: inherit !important
}
I haven't done much testing and this may cause other issues. I would also like to avoid using !important if the cause of the width is resolved.
Thanks again.
-
This reply was modified 6 years, 5 months ago by Ross.
-
This reply was modified 6 years, 5 months ago by Ross.