Solved
Remove extra spacing using Java
I am not very Java-savvy, but I know I can remove the extra space between questions by adding JavaScript to the question. I haven't done it for a while and cannot remember how.
The example I am working on is having "blank" question text for a couple of question types below a descriptive text box. I'd like only the answerable parts to be closer to the descriptive text, instead of huge blank spaces between them.
Best answer by TomG
You can put CSS inside a `<style>` tag as part of a question's text and it will only apply to that page.
Anyway, if you want to hide the Separators and the Question text for all but the first:
```
jQuery('.Separator').hide();
jQuery('.QuestionText').each(function(index) {
if(index > 0) jQuery(this).hide();
});
```
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.