Disable/hide Download Button

Hi!

I`m looking for disabling the download button from the contextual and right-click menu but can´t find where to do it.

Someone knows how to do it?

I tried to do it in CSS stylesheets or JS functions but didn´t find the right way to do it.

Could someone help me please? Thanks!

Why? You can not really deny download.

Yeah but I want to disable it so the users can´t see it.
The users that are going to use it aren´t advanced.

Do you know how to do it? Thanks

I found how to hide it.

You must have Custom CSS app installed.

Then go to Settings > Theme and scroll down to Custom CSS

Add this code to the textbox and click on Save.

.menu-option.option-download {
display: none !important;
}

.menuitem.action.action-download.permanent {
display: none !important;
}

2 Likes