Form Field Carry Forward Statements | XM Community
Skip to main content

The form field statements, carried forward from previous question, wrap unnecessarily.

Is there some CSS code that could prevent this from happening
CSS.png

Hi there, you can use CSS to expand the space for the statement text. Try using the below CSS, which will expand this space for non-mobile:
@media (min-width:480px) {

span.LabelWrapper label>span {
    min-width: 400px;
}

}
FormFieldSizing.pngTo add CSS to specific questions, there are a couple methods in this post.


Leave a Reply