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

increase font size in text entry box

  • September 7, 2020
  • 8 replies
  • 329 views

Forum|alt.badge.img

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!

Best answer by rondev

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

font-size: 25px!important;

}

8 replies

rondev
Level 6 ●●●●●●
Forum|alt.badge.img+22
  • Level 6 ●●●●●●
  • September 7, 2020

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;

}


Forum|alt.badge.img
  • Author
  • September 7, 2020

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


rondev
Level 6 ●●●●●●
Forum|alt.badge.img+22
  • Level 6 ●●●●●●
  • September 7, 2020

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


Forum|alt.badge.img
  • Author
  • September 7, 2020

image.png


rondev
Level 6 ●●●●●●
Forum|alt.badge.img+22
  • Level 6 ●●●●●●
  • Answer
  • September 7, 2020

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

font-size: 25px!important;

}


Forum|alt.badge.img
  • Author
  • September 7, 2020

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?


rondev
Level 6 ●●●●●●
Forum|alt.badge.img+22
  • Level 6 ●●●●●●
  • September 7, 2020

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.


Forum|alt.badge.img
  • Author
  • September 7, 2020

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