Aspetta io chiedevo solo se lo tenevi cosi che era più facile, comunque se non lo hai devi inserire in tutte le pagine del tuo sito che devono avere il puntatore questo codice:
Codice HTML:
<style type="text/css">
body{
cursor:url('percorso_puntatore.estensione');
}
a:link{
cursor:url('percorso_puntatore.estensione');
}
a:visited{
cursor:url('percorso_puntatore.estensione');
}
a:hover{
cursor:url('percorso_puntatore.estensione');
}
</style>
Questo codice deve essere inserito tra i tag <head> ed </head> perchè funzioni correttamente.
N-B. Se vuoi che quando il puntatore si trovi sui collegamenti il puntatore non resti lo stesso scelto da te, nel codice sopra postato fai così:
Codice HTML:
<style type="text/css">
body{
cursor:url('percorso_puntatore.estensione');
}
</style>