If the volumio player is installed in a public area, you might want to restrict some pages. One of the restrictions is the menu, assuming the settings are all done and there is no reason to have the menu at al.
With the FireFox inspector I found the menu is shown by menu-top .pulldown visibility is block. This can be changed in css/panels.css, just set display: block; to display: none;
The command is:
sudo nano /var/www/css/panels.css
find the lines:
#menu-top .dropdown {
display: block;
and change it to:
#menu-top .dropdown {
display: none;
Save the file and reboot with
sudo reboot
The following pages can still be called in a browser:
Main -> [volumio/index.php](http://volumio/index.php)
Library -> [volumio/sources.php](http://volumio/sources.php)
Playback –> [volumio/mpd-config.php](http://volumio/mpd-config.php)
Network –> [volumio/net-config.php](http://volumio/net-config.php)
System –> [volumio/settings.php](http://volumio/settings.php)
Credits –> [volumio/credits.php](http://volumio/credits.php)
but who will know?