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?
Page 1 / 1
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.