Question Spacing Java Code | XM Community
Question

Question Spacing Java Code

  • 4 March 2024
  • 1 reply
  • 9 views

Userlevel 6
Badge +5

Hi Everyone

Hope you can help.

I am using this Java code.

jQuery('.QuestionOuter').css('padding-bottom','0px');

To reduce question spacing, but this reduces the spacing for all questions in a block.

What is the code for just an individual question?

Thanks :) 🤞


1 reply

Userlevel 7
Badge +36

Try this
 

jQuery('#'+this.questionId+' .QuestionOuter').css('padding-bottom','0px');

 

Leave a Reply