tags:

views:

57

answers:

1

Is it possible to create an image map from a background image? I'd like to have the sides of the screen clickable and I do not see any way to accomplish this without a map.

+3  A: 

You may want to use transparent fixed floating <a> anchor tags like these:

<a style="display: scroll; position: fixed; top: 25px; left: 0px; width: 20px; height: 20px;" href="#"></a>

<a style="display: scroll; position: fixed; top: 25px; right: 0px; width: 20px; height: 20px;" href="#"></a>

You may want to use the bottom attribute instead of top to position the tags relative to the bottom of the window.

Daniel Vassallo