Customizing Text Entry size and aligning next to choice | XM Community
Skip to main content
Question

Customizing Text Entry size and aligning next to choice

  • August 3, 2021
  • 1 reply
  • 21 views

need Javascript to customize TEXT ENTRY size and position of TEXT ENTRY next to a choice
I am sharing a snapshot to understand my issue

image.png

1 reply

Forum|alt.badge.img+8
  • Level 2 ●●
  • August 4, 2021

Hi, Please try this JS code.
Qualtrics.SurveyEngine.addOnReady(function () {
    var $this = jQuery(this.questionContainer);
jQuery(".QuestionBody .LabelWrapper .InputText", $this).css({"float": "left", "clear": "none"}).siblings("label[for]").css({"float": "left"}).closest("LabelWrapper").css({"display": "inline-block", "width": "100%"});
    jQuery(".QuestionBody .LabelWrapper .ValidationDiv", $this).css({"clear": "both"});
})