Re: [GUIDE] add a cool hand to your websites
Quote:
Originally Posted by
penihop
dont know why, but it fk MuWeb if i put it in index.php, sometimes i can't login ...
(was added before <? and hand was working)
if i remove it , everything is fine.
find a css file the website is using. don't edit the index.php
since muweb uses the same template concept as mutoolz 1.. it should have it somewer in there
to disable context menus... ( dunno about if this works in the browsers.. but atleast it should in ie6, ff1.5, ff3, ie7 )
open ur template up... just before the </body>
put this
PHP Code:
<script>
document.oncontextmenu = function(){return false}
if(document.layers) {
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = function(e){
if(e.target==document)return false;
}
}
else document.onmousedown = function(){return false}
</script>