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

Left-align quiz: Difference between revisions

From MoodleDocs
m (version template removal)
(Replaced content with "{{Moved_to_dev_docs}}")
 
Line 1: Line 1:
{{Scrapbook}}
{{Moved_to_dev_docs}}
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''.
 
<pre>
.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
}
</pre>
 
==See also==
 
* [http://moodle.org/mod/forum/discuss.php?d=30573#150195| Changing Quiz Appearance] forum discussion
 
[[Category:Themes]]

Latest revision as of 01:38, 23 June 2011

This development related page is now located in the Dev docs.

See the Left-align quiz page in the Dev docs.