How can I hide or reduce the padding of specific question text? I have already hidden all content of the question box with <<span style display"none>>
But it looks like the div container padding is still causing a problem.
!
Page 1 / 1
Easiest is to hide the question text with JS. Then you don't even need the span.
```
jQuery("#"+this.questionId+" .QuestionText").hide();
```
```
jQuery("#"+this.questionId+" .QuestionText").hide();
```
@TomG - Yup, way easier than what I was trying to do. I tried removing all the individual pieces but this is WAY cleaner.
Much appreciated.
Much appreciated.
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.