I want to increase the wdith of the text box in my survey via CSS, but it doesn’t work.
I’ve inspected the elements necessary and thought I’m doing the right adjustments, but the textbox always converts back to a width of 45rem, whereas I want the box to stretch across the whole question container width.
How can I fix that?
My CSS code:
.te .question-content .text-input, .te .question-content textarea {
width: 100rem;
max-width: 100rem;
}How it looks like visually:

How it looks in the source code:

