Hello btcharpied,
Checking the HTML code generated, all form items are enclosed within <p> tags and have respective <label> tags around them.
Every item has a <br /> between them.
You'll have to edit:
- Code: Select all
ocs2/templates/manager/reviewForms/previewReviewForm.tpl (if you want the manager to see the form as the reviewer will)
ocs2/templates/submission/reviewForm/reviewFormResponse.tpl (reviewer form)
Look for </label><br />. This exists only for checkboxes and radio button form elements.
Removing the <br /> will line the checkboxes and radio buttons, but won't give you a lot to work with CSS, except for margins and paddings.
Depending on how you want the output to be, you'll need to add/change more controls and more HTML code.
Good luck.