Hide quiz navigation blok moodle 3.5

Hide quiz navigation blok moodle 3.5

by Inter Jos -
Number of replies: 3

Hi,


Just upgraded from Moodle 3.4 to Moodle 3.5.


Before upgrading I suppressed the Quiz navigation block and the summary of quiz page with the css code:

div#mod_quiz_navblock {visibility:hidden;}

aside#mod_quiz_navblock {display:none }

table.quizsummaryofattempt {visibility:hidden;}


After upgrading to Moodle 3.5 that doesn't work anymore.

(see attachement!)


How can I get ride of the block?


thanks,

jose




Average of ratings: -
In reply to Inter Jos

Re: Hide quiz navigation blok moodle 3.5

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers

Moodle 3.5 has changes in the theme, so the HTML is probably not exactly the same. Therefore the CSS will need to be updated to work with the new HTML structure. It is probably not very different.

In reply to Inter Jos

Re: Hide quiz navigation blok moodle 3.5

by Siddhant Rao -

Were you able to hide the quiz navigation block?

If you did, could you please list the steps as to how you accomplished it.

Thanks

In reply to Siddhant Rao

Re: Hide quiz navigation blok moodle 3.5

by Elke Thoné -
I was able to hide the navigation block with this code:

section#mod_quiz_navblock {display: none !important; }