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

Form Field Carry Forward Statements

  • December 16, 2022
  • 1 reply
  • 17 views

PaulMc5209
Level 1 ●
Forum|alt.badge.img+3

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

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

1 reply

Tom_1842
Level 8 ●●●●●●●●
Forum|alt.badge.img+28
  • Level 8 ●●●●●●●●
  • January 3, 2023

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.