



Well the Texas Hold Em spammer is back trying again, but the comments are being caught for moderation. We’ll see how it goes.
I’ll be changing the right side picture again soon. I’ll be adding in an image of a filmstrip with panels of differant images. Hopefully it’ll be up by this weekend.
edit 11/10: It’s done. Since it’s actually a BG image, I can’t make them clickable (unless I really go at it to learn CSS positioning and coding)






More Options ...
Categories
Tag Cloud
Blog RSS
Comments RSS

Void
Life
Earth « Default
Wind
Water
Fire
Light 
Want to make that filmstrip clickable?
How about something like this?
<img src="filmstrip.jpg" alt="filmstrip" usemap="#mymap" width="150" height="500" id="filmstrip" />Then use this CSS:
#filmstrip {
position: absolute;
right: 0;
top: 0;
}
Then create a regular image map like this:
<map id="mymap">
<area shape="rect" coords="..."...
</map>
Cool, thanks! I’ll give that a try.