@Ren7 @jpeter I still can't get this to work, I have never used JavaScript so I am completely clueless when looking at the code. I have copy and pasted the message about and made sure the put the script tags either side but it isn't working. Any ideas why, do I need to change anything on it or should it just be a case of copy and pasting. I will paste what I have done below. Thanks
<script>
(function(){
// Loop through all images on the page adding necessary styles and
// event listener to prevent images from opening the context menu.
document.querySelectorAll('img').forEach(img => {
img.style.webkitUserSelect = 'none';
img.style.webkitTouchCallout = 'none';
img.addEventListener('contextmenu', evt => {
evt.preventDefault();
return false;
});
});
})()
</script>