add a cool hand to your websites
edit ur site css or the sites html/PHP
now put this anywhere on the page...
preferably in between <head> </head>
Code:
<style>
body,a {
cursor: url(http://mutoolz.mmowebs.com/MU.cur), auto;
}
a:hover {
cursor: url(http://mutoolz.mmowebs.com/MU2.cur), auto;
}
</style>
thx to skypper for the image ^^
Re: [GUIDE] add a cool hand to your websites
Nice. Many thanks john, 10/10!
Re: [GUIDE] add a cool hand to your websites
Re: [GUIDE] add a cool hand to your websites
oh, thanks. 10/10
I like it very much because its mine.:))
Re: [GUIDE] add a cool hand to your websites
nice...
it be better if everyone download it.and
do this
Quote:
<style>
body,a {
cursor: url(
http://your main site/MU.cur), auto;
}
</style>
and put the downloaded .cur in your main dir.
this helps JOHN_D not to get DDOS when more then 500+ server sites use this XD
Re: [GUIDE] add a cool hand to your websites
dash get me the other mu icon.. ill convert it again
updated 1st post.. now uses 2 cursors..
Re: [GUIDE] add a cool hand to your websites
Re: [GUIDE] add a cool hand to your websites
Re: [GUIDE] add a cool hand to your websites
thx for the guide john, really nice :)
Re: [GUIDE] add a cool hand to your websites
john_d
can you make a script for RIGHT CLICK?
to give you thishttp://img113.imageshack.us/img113/3...clikfr3.th.jpg when you make right clik!
I realy need this!:P
Re: [GUIDE] add a cool hand to your websites
Hey thanks for the guide easy , clear , with nice effect in the end :D
Re: [GUIDE] add a cool hand to your websites
Quote:
Originally Posted by
HurryPoker
I think you can make it with JavaScript.
Re: [GUIDE] add a cool hand to your websites
Quote:
Originally Posted by
HurryPoker
easy as pie.. but i never liked the concept.
anyway it is called context menu/s
read more here : http://luke.breuer.com/tutorial/js_c...firefox_option
Re: [GUIDE] add a cool hand to your websites
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.
Re: [GUIDE] add a cool hand to your websites
john, if you can make with javascript to apear that menu when you right click...you can disable it ? to disable the normal right click in a site...how you disable it?
thx
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>