Posts made by Joseph Rézeau

Picture of Core developers Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers Picture of Translators

Ok, someone must have found out the CSS solution and implemented it in theme\standard\styles_layout.css in 1.8 beta but unfortunately not (yet) in 1.7.

Here is the fix.
.que .answer {
/* float: right; */
float: left;
width: 83%;
margin-bottom: 0.5em;
}

i.e. replace float:right with float:left.

Tim, can you commit the fix to current 1.7 stable version to make everyone happy, including those shameless MSIE users?black eye

Joseph

Picture of Core developers Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers Picture of Translators
Tim > That's pretty ugly.
I agree.black eye
However, taking out both the following from the css:
.que .submit {
position: relative;
clear: both;
float: left;
}
/* MSIE Hack */
* html .que .submit {
float: none;
}

results in the submit button covering the prompt message in both FireFox and MSIE 7. Maybe this is a bug in the quiz files themselves, which cannot be solved in CSS?

Joseph