Click to See Complete Forum and Search --> : No Idea


charish2k1
06-20-2003, 08:59 AM
Alright, I don't know how to explain it, so I'll use a URL to show it. On the HTML Goodies home page (http://www.htmlgoodies.com/), if you look in the address bar, you see that little icon before the address. What's it called and how do you make it??? :confused:

khaki
06-20-2003, 09:17 AM
hi charish2k1...

it's called a favicon.

go to the HTML forum (on this site) and type favicon in the search box.

you will get about 1/2 a dozen threads that cover it.

;) k

charish2k1
06-20-2003, 10:31 AM
Alright, what about the cursor? What's the code so that instead of the Windows cursor, it uses your custom cursor made in Microangelo or some other program? And how do you do it on a frames page?

pyro
06-20-2003, 11:04 AM
Insert this in the <head> of the page you want to have the custom cursor, or better yet, in a .css file, and call that on the page:

<style type="text/css">
body {
cursor: url("yourcursor.cur");
}
</style>