Removing position:relative does not change anything to the problem, i.e. the Submit button is still covering the prompt text in MSIE 7 (when available screen space is reduced, as explained in Simon's original message).
Joseph
Joseph Rézeau
Posts made by Joseph Rézeau
Tim > That's pretty ugly.
I agree.
However, taking out both the following from the css:
.que .submit {
position: relative;
clear: both;
float: left;
}
/* MSIE Hack */
* html .que .submit {
float: none;
}
I agree.

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?
JosephSimon,
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;
}
* html .que .submit {
float: none;
}
with:
/* MSIE 7 Hack */
html* > .que.multichoice .submit.btn {
margin-top:20px;
}
html* > .que.multichoice .submit.btn {
margin-top:20px;
}
Joseph
Tim > OK, I clearly don't have a clue how Moodle works.
Does anyone really have? 
Well, good-night for now,
Joseph
Tim > I think if you write x < 3 and x > 1, then it will not work,...
See attached (in Moodle 1.7.1+)
Joseph