I use the default template of LimeSurvey (Version: 2.64.7). However, I want to limit the general width of the survey (for all aspects of the survey, not just specific questions). Thus, I copied the default template and did insert the following statement (based on a 4year old post in this forum) in the template.css:
table.innerframe {
width: 800px;
}
As you might guess, this did not change the width of the survey. I would absolutely welcome ideas and solutions for this problem.
the default template is responsive, so maybe you want to adjust the with for the several @media entries in flat_and_modern.css at the lines 1637, 1642, 1647
e.g. line 1646
@media (min-width: 1200px) {
.container {
width: 800px;
}
}
If you want to change to 800px for all screen-width you just add at the end of the flat_and_modern.css:
.container {
width: 800px;
}