Hi,
unfortunately you did not insert a link to the mentioned thread.
I previously found someone on the English design forum who mentioned that this could be done using the Web Developer Tools in your browser
But this is absolutely correct.
Steps:
- Create a question of type "long text"
- Open the question in the preview
- Enter some text
- Open the webdevelopment tool.
- Mark the text field
You see this. (This is Firefox; in Edge it will be similar.)
You see that this question type is a "textarea" and has a class ".form-control". (in the blue section)
And at the right you find this selector (form-control) and some properties.
You can change the values to see the effect.
And you see a property "font-size" with a value of 1rem. Okay, change it, see what happens.
If you are satisfied, you can do several things:
Insert this into the "custom.css" of your extended theme.
Insert this into each question where you want to have this larger font-size.
It is only necessary to enter the changed property, like
textarea.form-control {
font-size:3rem;
}
Of course you can change other properties. In my opinion you also should change the line-height.
If you enter this directly in the sourcecode of your question don't forget to surround with <style>...</style> tags.
And you also didn't show what your "AI" told you. Though during the last months the answers get a bit better, AI still hallucinates a lot if asked about LimeSurvey.
Joffm