Solved
Text entry box in a multiple choice question - is it possible to have it beside instead of below?
I have a multi-choice question with the last option being "Other (please specify)" with a text box. This text box appears below the text. Is it possible to have it beside instead?
Best answer by rondev
Try using below code in JS onReady
jQuery("#"+this.questionId+" .TextEntryBox").each(function() {
var tb = jQuery(this);
tb.css({"float":"none","background-color":"white","width":"50%"});
tb.prev("label").css("display","block").append(" ").append(tb);
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
