The form field statements, carried forward from previous question, wrap unnecessarily.
Is there some CSS code that could prevent this from happening
Page 1 / 1
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;
}
}
To add CSS to specific questions, there are a couple methods in this post.
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.