Essential theme remove navigation block?

Essential theme remove navigation block?

by Dan Bell -
Number of replies: 1

Moodle 3.3.1

Essentials theme 3.3.0.2

I will attach an image here....But what I am calling the navigation block (but might be wrong) is a default block on my page that I want to hide for students. I put some css in, and it removed it for all users. Since this also included the the "Site administration" link, this caused quite a mess for a while. I'm not sure if this is a new Essentials "feature", but I cannot edit it on the dashboard with blocked editing on. With Blocks editing on, I get no icons to move, or configure the block, or check permissions.


I did see in an older post someone mentioned the navigation block can be hidden overriding some permissions on this block, but I cant find those permissions, and I'm not sure this is called the navigation block since it has no title .


Below is with Blocks Editing on. I'd like to hide everything for the student, or hide everything except Site Administration for everyone.

Nav Frame

Average of ratings: -
In reply to Dan Bell

Re: Essential theme remove navigation block?

by Dan Bell -

After some more trial and error with css, I found the following to work:


/*Hide nav block*/

nav.list-group {

    display: none;

}

/*show admin button*/

nav.list-group.m-t-1 {

    display: block;