With the update in the Buzz player, some features of custom assessment templates don't display quite the same as they did before. I've worked out these solutions for the school where I work.
Problem 1: In the new player, questions have line breaks before and after each <a:question /> tag, which means fill-in-the-blanks in a paragraph or sentence break everything up.
Solution: I updated the code.
Old code:
<style type="text/css">
xli-question {
display: inline-block;
}
New code:
<style type="text/css">
inline-question {
display: inline-block !important;
}
Problem 2: If a question has two blanks in close proximity, only one blank displays in the new player. For example, if my HTML said something like this, I would only get one blank showing up:
<a:question /> and <a:question /> years ago our fathers brought forth, on this continent...
Solution: For the new player, your HTML template needs to have a maximum of one <a:question /> on each line of code. This doesn't mean you need to add in <br> tags between each--just start a new line of code, like this:
<a:question /> and
<a:question /> years ago our fathers brought forth, on this continent...
Comments