Hiding or editing a specific div | XM Community
Skip to main content
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.



!
Easiest is to hide the question text with JS. Then you don't even need the span.

```

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.

Leave a Reply