Note: You are currently viewing documentation for Moodle 1.9. Up-to-date documentation for the latest stable version is available here: Left-align quiz.

Left-align quiz

From MoodleDocs

Quiz Questions and Answers

Introduction

In the quiz module questions and answers are right aligned. This layout is hard coded in the php files.

Task

Display the questions and answers left aligned.

Solution

A) Change the php files as proposed by Harry Smith in the Moodle forum in the discussion "Changing Quiz Appearance"

or

B) Add the following CSS properties to the CSS file "styles_layout.css" of your theme
into the section " *** Modules:Quizz".


.mod-quiz .generalbox .generalboxcontent {
  text-align:left !important
}
.mod-quiz .generalboxcontent table[align=right],
.mod-quiz .generalboxcontent p[align=right] {
  float:left
}
* html .mod-quiz .generalboxcontent table,
* html .mod-quiz .generalboxcontent p {
  float:left
}