I currently have two div elements in my HTML code:
<div id="hm-sp-lenovo-wr">
.......
<div id="hm-sp-motorola-wr">
.......
In my stylesheet, I have defined the following CSS rules:
#hm-sp-lenovo-wr:hover { cursor: pointer }
#hm-sp-motorola-wr:hover { cursor: pointer }
However, when I hover over these divs, the cursor does not change to a pointer as expected. I simply want to provide a visual cue to the user that the div is clickable.
You can see an example of what I'm trying to achieve on this website, specifically in the middle right below the flash slider.
Any suggestions or ideas would be greatly appreciated!