Reporting a bug when using android instead of iPhone answering a "Highlight" question | XM Community
Skip to main content

Presenting the "Highlight" type question in an android screen cause inability to select the top row elements but this issue does not exist in iPhone view. See the images. The unlovable cannot be selected on Android phone (gray) but easily can be selected (blue) on an iPhone. Any idea what I can do about this?
Resized_Screenshot_20220921-143654_Samsung_Internet.jpegIMG_8810F79A9E25-1.jpeg

I ran into this same issue and came up with a work around. Using JS, add padding to the top of the QuestionBody to fix the problem and remove all padding from the bottom of the QuestionText to minimize the gap.
var q = jQuery("#"+this.questionId);
q.find(".QuestionText").css("padding-bottom","0px");
q.find(".QuestionBody").css("padding-top","59px");


Lovely! thank you so much


Leave a Reply