!

To give the background color I used the following Javascript
jQuery("#"+this.questionId+" .QuestionText").css("background","#E5E5E5");
jQuery("#"+this.questionId+" .QuestionBody").css("background","#E5E5E5");
});
I have attempted to manipulate the padding between the questions using
jQuery("#"+this.questionId+".QuestionOuter").css("padding-bottom","0px");
and
jQuery("#"+this.questionId+".QuestionOuter").css("padding-top","0px");
Respectively, but the white space still remains. Any suggestions would be appreciated.