Oh dear...
Ok! I'm done with that!
Pffiou!
Now, since I'm dialoguing with myself, and was then oblige to just, think as an adult and put myself together... (thank you for learning me this also :-) )
I thought I could maybe help others that will or are going through this same problem!
So...
1) For a personalized image onmouseover cursor:
-find this line in your stylesheet
a img { }
and add this:
a img {
cursor: url('my_website_custom_cursor.cur');
}
Note:
The extension ".cur" is specific to cursors...
So, you have to dowload your cursor via a cursor website or simply use the basic ones!
-->(right here)
Now if like me, you don't find anything matching your taste...
I figured out that you can make a cursor via a favicon.generator by just saving the fav' on your computer and the change the ".ico" extension to ".cur".
Also, the cool thing about that, is that you can download one of your own picture as a favicon and then make it a cursor ;-)
It's up to you!
Now for people that will have the same problem as me about their "pre-nav" logo that act as an "img" and then show the cursor you just setted up for your pics...
Here's the solution:
2) Get rid of the classic code in your pre-nav:
< a href="http://your.website.com">< img src="http://your.website.com/files/your_logo.png" />
And create a "logo" div id in your style CSS:
#logo {
background: url('http://your.website.com/files/your_logo.png') no-repeat scroll transparent;}
Now, in your "pre-nav" add this code:
< a href="http://your.website.com">< div id="logo">< /div>
And delete the < a href> tag if you don't want your logo to link back to your homepage...
Now, to make your logo "onmouseover cursor" normal, add this to your StyleCSS logo div id:
#logo {
background: url('http://your.website.com/files/your_logo.png') no-repeat scroll transparent;
cursor: pointer;
height: ?px;
width: ?px;
}
And you're good!
---> For those who like to copy-paste:
Don't forget to delete the extra spaces after the arrows of each tags...
Have fun!
A.