• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Cursor.cur

Status
Für weitere Antworten geschlossen.
HTML:
<html>
 <head>
  <style type="text/css">
   body {
    cursor: url(cursor.gif), auto;
   }
 
   table, tr, td {
    cursor: url(cursor.gif), auto;
   }
 
   a:link {
    cursor: url(cursor.gif, auto;
   }
 
   a:hover {
    cursor: url(cursor.gif), auto;
   }
 
   a:active {
    cursor: url(cursor.gif), auto;
   }
 
   a:visited {
    cursor: url(cursor.gif), auto;
   }
 
   div {
    cursor: url(cursor.gif), auto;
   }
  </style>
 </head>
 <body>
  Hier ist dann deine Homepage
 </body>
</html>

Den Code hab ich mal vor ner Weile geschrieben. Vielleicht kansnt du damit ja etwas anfangen. ;-)

Gruß Corvulus
 
HTML:
<html>
 <head>
  <style type="text/css">
   body {
    cursor: url(cursor.gif), auto;
   }
 
   table, tr, td {
    cursor: url(cursor.gif), auto;
   }
 
   a:link {
    cursor: url(cursor.gif, auto;
   }
 
   a:hover {
    cursor: url(cursor.gif), auto;
   }
 
   a:active {
    cursor: url(cursor.gif), auto;
   }
 
   a:visited {
    cursor: url(cursor.gif), auto;
   }
 
   div {
    cursor: url(cursor.gif), auto;
   }
  </style>
 </head>
 <body>
  Hier ist dann deine Homepage
 </body>
</html>

Und damit das bei dir funk musst du einen Cursor in deinem Html-Ordner gespeichert haben und zwar als gif.
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben