When responding to a side by side question with a text box, the cursor is automatically centered. How can I make it left justified? Thank you in advance.

When responding to a side by side question with a text box, the cursor is automatically centered. How can I make it left justified? Thank you in advance.

Best answer by RickB
Hey
you can try this code. You need to replacs QID3 with your own Question ID.

Qualtrics.SurveyEngine.addOnload(function() {
// Replace 'QID3' with your actual Question ID
var questionId = 'QID3';
var inputs = document.querySelectorAll('#'+ questionId + ' input[type="text"], #' + questionId + ' input[type="number"], #' + questionId + ' textarea');
inputs.forEach(function(input) {
input.style.textAlign = 'left';
});
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.