Is there a way to remove the activity navigation bar at the bottom of a book. Its been very confusing for our students as they keep clicking that instead of the next page. There is a picture below.

Is there a way to remove the activity navigation bar at the bottom of a book. Its been very confusing for our students as they keep clicking that instead of the next page. There is a picture below.
I have the same problem...
Need to remove that navigation bar.
Moodle 3.7
Gilles, the CSS selectors for that change in 3.7 - try
body.path-mod.pagelayout-incourse div.activity-navigation {display: none;}
Hi Jon,
I was having a similar issue in 3.7 and found that your solution didn't work. I am not really a CSS person but with a bit of trial and error messing about with your options, the following worked to remove both the navigation bar and the "jump to" drop down.
body.path-mod.pagelayout-incourse select#jump-to-activity {display: none;}
body.path-mod.pagelayout-incourse nav.activity-navigation {display: none;}
Hopefully this helps someone wanting to remove the activity navigation.
Try this instead...
body.path-mod.pagelayout-incourse a#prev-activity-link, body.path-mod.pagelayout-incourse label[for='jump-to-activity'], body.path-mod.pagelayout-incourse select#jump-to-activity, body.path-mod.pagelayout-incourse a#next-activity-link { display: none; }
I have been trying to remove the navigation links at the bottom of the page. I haven't yet succeeded. Maybe I am doing it wrong. Can someone help?
I have Moodle 3.8, boost theme, onetopic format.
Milt
I'm on a Moodle 3.8 and that seems to have worked for me. Thank you.
Do you know how we can nominate that as a feature to be incorporated in a future development, being able to turn off the move from activity to activity as it would be really helpful in avoiding missing the labels that actually tell people what to do, if they have a choice between one activity and another, or when the activity is available in more than one format.
Hello Jon, thanks for your help.