Hi,
1 - The plugin works with articles. To include a survey in an article, you should enter the code with survey's id in the article. E.g., {surveyforce id=6}
2 - If you couldn't reduce the space, we could help you. FTP access is required. You can send it to
www.joomplace.com/helpdesk/index.php together with this thread's link.
3 - Try to change the template. "SurveyForce Deluxe" has 2 templates by default. One has the buttons at the bottom, the other - on top.
If you need to change the template you use, you should edit the template file media\surveyforce\ surveyforce_new\template.php
At the beginning there's the function which define layout of survey elements is called "function SF_MainLayout". There's the following part:
<tr> <td id="td_survey_task" width="10%">
{PREV_BUTTON}
</td>
<td align="center" id="sf_error_message" width="80%" align="center">
{ERROR_MESSAGE_TOP}
</td>
<td id="td_survey_task" width="10%">
{START_BUTTON}{NEXT_BUTTON}{FINISH_BUTTON}
</td>
</tr>
<tr> <td id="sf_survey_body" colspan="3" valign="top">
{SURVEY_BODY}
</td> </tr>
The buttons name are
{PREV_BUTTON}{START_BUTTON}{NEXT_BUTTON}{FINISH_BUTTON}
A programmer define their place in the code. You need to replace mentioned part with the following:
<tr> <td id="td_survey_task" width="10%">
<!-- x -->
</td>
<td align="center" id="sf_error_message" width="80%" align="center">
{ERROR_MESSAGE_TOP}
</td>
<td id="td_survey_task" width="10%">
<!-- x -->
</td>
</tr>
<tr> <td id="sf_survey_body" colspan="3" valign="top">
{SURVEY_BODY}
</td> </tr>
<tr> <td id="td_survey_task" width="10%">
{PREV_BUTTON}
</td>
<td align="center" id="sf_error_message" width="80%" align="center"> <!-- x --> </td>
<td id="td_survey_task" width="10%">
{START_BUTTON}{NEXT_BUTTON}{FINISH_BUTTON}
</td>
</tr>
Also you can make the buttons on top and at the bottom, then you should place the tags {PREV_BUTTON}{START_BUTTON} in several places.
4 - What regards to this point, it could be a bug. We'll check it.
Regards