Hi, Denis' solution is to add this IF-statement to the "progress_bar.twig" of your extended theme.
Surround the "top container" DIV section
with the IF
Code:
{% if (aSurveyInfo.aNavigator.show and aSurveyInfo.include_content != 'firstpage') %}
...
{% endif %}
What you always should do to find out these things:
Examine the page with a webdevelopment tool (F12 in most browsers)
You will see the affected classes and the effects if you change something.
You see the class is ".progress".
So with a
Code:
<style type="text/css">
.progress {
display:none;
}
</style>
in the source code of the survey description or welcome message the progress bar disappears.
Joffm