So how did SEN get the little Starcraft cursor instead of the little arrow-majigger?
CODE
body
{
cursor: url("Cursor URL");
}
Actually, it's a style sheet.
So, the correct code would be something like this. Haven't checked but I think so.
CODE
<style>
<!--
body
{
cursor: url("Cursor URL");
}
-->
</style>
If you're going to make it completely correct, at least do it the right way
CODE
<style type='text/css'>
body
{
cursor: url("Cursor URL");
}
</style>
Besides, if he didn't know it was CSS, then he should probably learn it before he goes into web design.
I also believe it is doable in Javascript too.
Though it doesn't show in Mozilla Firefox
Instead of asking these questions you could just view the source. I learned alot of my coding skills from looking at the source.
I don't like looking at big blocks of text...
No, just kidding. I learned a lot too, darn, I should of looked at the source...
Its dangerous to look at the source of sites like these. It runs using PHP, which means you won't be able to understand. You check out a topic, see all the blocks of code, and give up your dream to make a website.
Or, people, you can do it much easier
<body style="cursor:url("ani/curimage");">
Simply put the style part inside the body tag.
You can't see PHP's source, it output's it all in in HTML.
QUOTE(Shmeeps @ Jan 12 2006, 04:33 PM)
You can't see PHP's source, it output's it all in in HTML.
[right][snapback]404087[/snapback][/right]
The point he is trying to make is the script generates virtually all of the html through a loop, so you may "give up your dream" by looking and seeing LINES and LINES of code, when the script actually did most of the work.