increase font size in text entry box | XM Community
Skip to main content

Hi everyone,
I'm trying to increase the size of font in the text entry box.
While doing it by "look & feel", in "style", "answer text"-
image.pngincreasing the font also leads to an increase of the "next" button.
How can I do that without influencing the "next" button's size?
Maybe there is a code can do it for me?
Thank you!

To increase the font size in text entry box, use below css in look and feel -> style -> custom css
input[type="text"]{

font-size: 18px!important;

}


I don't know why, but it is not working for me :(


https://www.qualtrics.com/community/discussion/comment/30014#Comment_30014Please send the screen shot where you have paste the css


image.png


Try this:
input[type="text"], textarea{

font-size: 25px!important;

}


It works. but, in addition to increase the font, the box increase too and now its very big..
Do you familiar with such a case?


https://www.qualtrics.com/community/discussion/comment/30039#Comment_30039Obviously the box size will increase since the text size is increasing. You can change 25px to some lesser px.


I solved it by change the "essay box" to "multi line"
thank you vary much!


Leave a Reply