Adjusting the size of 'Other, please specify' text box | XM Community
Skip to main content
Solved

Adjusting the size of 'Other, please specify' text box

  • February 23, 2021
  • 3 replies
  • 1623 views

Forum|alt.badge.img

Hello,
Would anyone know how I can adjust the 'Other, please specify' text box size? The small one that comes with the themes is too small (you don't even notice it) and the medium one is too big. I would need something in between.
Thank you!

Best answer by rakeshdayalan19

Hello Diana,
Trying adding the below JavaScript.
You can change the size of width as per your need.
jQuery("#"+this.questionId+" .InputText").css("width", "200px");

View original

3 replies

Forum|alt.badge.img+5

Hello Diana,
Trying adding the below JavaScript.
You can change the size of width as per your need.
jQuery("#"+this.questionId+" .InputText").css("width", "200px");


Forum|alt.badge.img+2

Can you also adjust the height to make it look like a square?


Forum|alt.badge.img+5

https://community.qualtrics.com/XMcommunity/discussion/comment/47556#Comment_47556Yes you can .. Try this
jQuery("#"+this.questionId+" .InputText").css("width", "200px");
jQuery("#"+this.questionId+" .InputText").css("height", "200px");



Leave a Reply