pokEye
01-21-2003, 07:41 PM
does anyone know if you can use CSS on image maps..
an example is.. here : http://www.hidden-wings.net/splash.html
if you put your mouse over the counter, it's cursor:move, but... when you put your mouse over Enter, cliques, or gbook, the mouse is still the hand.
so, i was wondering if there's a way that you can make it so that i have the same cursor for the image map.
thank you!!
lefty
01-21-2003, 07:48 PM
I know someone has asked this before, I don't think they ever came up with a solution. :(
pokEye
01-21-2003, 07:50 PM
=( ohh ok. thanks anyways!
jackie
01-21-2003, 08:36 PM
try moving all your css to a file and call it main.css [make sure that you take the little end tags off], then upload it, and on every page, type, <link rel="stylesheet" type="text/css" href="main.css"> that should work, if it doesnt, just get in contact with me some how and ill help you with it.
Try adding this to your css...
img.foo {cursor:move;}
then add this to your IMG tag...
class="foo"
but that really makes it appear for the whole image.
I am guessing you want to make it appear for only the linked parts. In that case, this is untested but try putting this into your css part instead of all that above...
area {cursor:move;}
OR try this...
area.foo {cursor:move;}
and add then add the class to the AREA tags...
class="foo"
(moving your css to a separate file and linking to it will make no difference to the current outcome)
jackie
01-22-2003, 12:40 AM
the css coding i said works for me when i use image maps, it works for the whole page, unlike when you put the css on a page, that just doesnt work for me :p