Matt Elhotiby
Matt Elhotiby

Reputation: 44086

cursor: pointer on hover not working

I have two divs

<div id="hm-sp-lenovo-wr">
 .......

<div id="hm-sp-motorola-wr">
 .......

And in my css I have

#hm-sp-lenovo-wr:hover { cursor: pointer }
#hm-sp-motorola-wr:hover { cursor: pointer }

but when i hover over the divs no pointer appears ....i just want to make the user know that the div is clickable...

Here is the link to the site....look at the middle right below the flash slider

any ideas

Upvotes: 1

Views: 18257

Answers (1)

Gazler
Gazler

Reputation: 84190

You don't need it on the hover state (as the cursor is only visible when hovering on the element), you simply put cursor: pointer on the element. Also, don't forget your closing semi-colons.

#hm-sp-lenovo-wr { cursor: pointer; }
#hm-sp-motorola-wr { cursor: pointer; }

Upvotes: 9

Related Questions