Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Left-align quiz: Difference between revisions

From MoodleDocs
(Created page with "{{Scrapbook}} In Moodle 1.5 questions and answers were right-aligned in the quiz module. This layout was hard-coded in the php files. To display quiz questions and answers '''le...")
(No difference)

Revision as of 01:38, 23 June 2011

In Moodle 1.5 questions and answers were right-aligned in the quiz module. This layout was hard-coded in the php files.

To display quiz questions and answers left-aligned in Moodle 1.5, add the following CSS properties to the CSS file styles_layout.css of your theme into the section *** Modules:Quiz.

.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
}

See also