I have a SharePoint site with 3 webpart pages + 1 wiki page ( HOME ) and client asked me to remove "Recycle Bin" and "Page Title" for every page.
I did this by using a script editor web part in each page with the following script:
<style type="text/css">
#sideNavBox a[title="Recycle Bin"]
{
display:none!important
}
</style>
<script type="text/javascript">
(function(){
document.querySelector("#pageTitle").style.display = 'none';
})();
</script>
This is working great for me but even after check-out and check-in ( major version every time) all pages other users ( full control and read ) still see recycle bin and page title.
It seems that this is working only for me :/
I am no SharePoint expert, for the most part I don't even know what I am doing.
Please help.