Posts made by Joseph Rézeau

Picture of Core developers 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
Picture of Core developers Picture of Plugin developers Picture of Testers Picture of Translators

Simon,

Here is a quick fix for MSIE 7.0. Might not work in older versions of MSIE.

In standard theme styles_layout.css, replace:

/* MSIE Hack */
* html .que .submit {
float: none;
}

with:

/* MSIE 7 Hack */
html* > .que.multichoice .submit.btn {
margin-top:20px;
}

Joseph

Attachment image00.jpg