When I click on a quiz in the course curriculum without entering the course I get the quiz and it shows a clock on the left. Could you delete this complete clock? screenshotexplanation
I have deleted clock winding down (use time as guideline, not to stop users after certain time), use H5P, so clock has no function/doesn't do anything.
@MeesterGijs,
Yes, the quiz clock has a function that's why we have added this feature.
The Quiz Clock will submit the quiz after the timeout if the user does not click on submit quiz within the time limit.
Is this the correct code to delete the clock and move embedded H5P quiz to the left? Or does it influence other columns as well?
/* QUIZ PAGINA geen klok */
.elegant .quiz_details, .minimal .quiz_details {
border: 1px solid rgba(0,0,0,.08);
display: none;
}
@media (min-width: 992px)
.col-md-push-3 {
left: 0%;
}
@MeesterGijs,
This custom CSS will work:
.single-quiz .quiz_details{
display: none;
}
I really appreciate your effort. Atleast you are trying something.
But there was a problem in above CSS. The .col-md-push-3 is too specific so it will affect on the other pages as well.
So we are not going to apply custom css on this class like this
Thanks for being so detailed. Indeed, we don't want that. The custom css for deleting the clock didn't work for me. Btw, I do want to save the time indication in the curriculum on the course page.