Staredit Network

Staredit Network -> Computers and Technical -> So how did SEN?
Report, edit, etc...Posted by Shadow_da_Sniper on 2006-01-07 at 12:33:54
So how did SEN get the little Starcraft cursor instead of the little arrow-majigger?
Report, edit, etc...Posted by Pie_Sniper on 2006-01-07 at 13:49:42
CODE

body
{
 cursor: url("Cursor URL");
}
Report, edit, etc...Posted by ... on 2006-01-07 at 15:05:06
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>
Report, edit, etc...Posted by Shmeeps on 2006-01-07 at 17:08:29
If you're going to make it completely correct, at least do it the right way rolleyes.gif

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.
Report, edit, etc...Posted by Chronophobia on 2006-01-08 at 10:53:35
Though it doesn't show in Mozilla Firefox
Report, edit, etc...Posted by warhammer40000 on 2006-01-08 at 14:13:45
Instead of asking these questions you could just view the source. I learned alot of my coding skills from looking at the source.
Report, edit, etc...Posted by Shadow_da_Sniper on 2006-01-08 at 18:55:07
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...
Report, edit, etc...Posted by Centreri on 2006-01-10 at 15:57:10
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.
Report, edit, etc...Posted by Shmeeps on 2006-01-12 at 18:33:57
You can't see PHP's source, it output's it all in in HTML.
Report, edit, etc...Posted by Shadow_da_Sniper on 2006-01-28 at 19:44:10
i know that.
Report, edit, etc...Posted by MindArchon on 2006-01-28 at 23:48:55
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.
Next Page (1)