Infinity Bound

This is for those of you new to using this style of coding. This is just a helpful way to give you some sanity. We recommend you use Macromedia Dreamweaver for coding. Frontpage works as well, but Dreamweaver is -much- nicer. We also recommend Abobe Photoshop for graphics editing.

Step 1:

Make the image. We are using the panel from Captain's Log for reference.

Image we are using:

Step 2:

Cut the image to place into the table. This panel is an overly easy panel to cut. Cut one image along the top and then cut the image part along the left side so you end up with the following images:

Top:

Left:

Step 3:

Place into coding. Since this image uses a black background you don't need to put anymore images into the panel. Just make the page/table have a black background. If you want to use an image like this with a varying background you can make these into .gif images with no black around them. For more information on how to make a .gif with a transparent background contact Joey.

Note: For this example we are leaving the table borders in. When you create a table using images like this. You want to set the table to 0 cell spacing and 0 cell padding with no border.

 

Step 4:

Create the image map. In Dreamweaver and Frontpage all you have to do is click on the image and then select the little shape objects to create the map spots.

After clicking the shape user you want to use, merely click and drag it around the spot you want for one of your links.

Since this panel has two images that will require links, you will end up with two image maps. You don't have to do anything special. Once you are done clicking on the first image, you can click on the second image's spots where you want links to be and Dreamweaver will automatically create a second map for you.

If you don't have these, don't worry, you can still create the image map. You just have to be more html savvy than the rest of us. And see the extra steps at the end of this.

You can name your image map. If you don't it will default to the name map and the any sequential maps will have a number after them.

Once you are done selecting areas your panel will look like this.

Step 5:

Put the link information into the HTML. For this you will need to be in HTML mode. You can do it in the display mode, but it's much more difficult. All you have to do from here is plug in the lnk you want to match the corresponding shape below.

Here is what your panel currently looks like in HTML mode.

<table width="507" border="1" align="center">
<tr>
<td colspan="2"><img src="../../../My%20Pictures/cltop.jpg" width="507" height="24" border="0" usemap="#Map"></td>
</tr>
<tr>
<td width="135" bgcolor="#000000"><img src="../../../My%20Pictures/clleft.jpg" width="135" height="86" border="0" usemap="#Map2"></td>
<td width="366" bgcolor="#000000">&nbsp;</td>
</tr>
</table>

<map name="Map">
<area shape="rect" coords="124,5,165,19" href="configlinkhere">
<area shape="rect" coords="171,6,213,18" href="ignorelinkhere">
<area shape="rect" coords="217,6,272,18" href="whosonlinkhere">
<area shape="rect" coords="276,4,318,20" href="privatelinkhere">
<area shape="rect" coords="323,6,348,18" href="dicelinkhere">
<area shape="rect" coords="352,6,386,19" href="zoomlinkhere">
<area shape="rect" coords="392,6,462,17" href="colorlinkhere">
<area shape="rect" coords="469,5,491,19" href="exitlinkhere">
</map>
<map name="Map2">
<area shape="rect" coords="58,16,118,33" href="forumlinkhere">
<area shape="rect" coords="58,41,115,56" href="internalmaillinkhere">
<area shape="rect" coords="58,63,119,79" href="realmpagelinkhere">
</map>

That's it! You've just created an image map to use instead of all that tedius individual links.

By Hand

Now, if you don't have Dreamweaver and you are in the stone ages of coding in notepad. Don't worry. All you need to know is the following code. It's a bit more tricky as you will need to know where your links lie in the image itself as you have to put in the pixel numbers for the coordinates.

At the end of your img src tag add:

usemap="#mapnamehere"

At the end of your html before you close the body and html tags put your map coding:

<map name="Mapnamehere">
<area shape="rect" coords="left,top,right,bottom" href="link">
<area shape="rect" coords="left,top,right,bottom" href="link">
<area shape="rect" coords="left,top,right,bottom" href="link">
<area shape="rect" coords="left,top,right,bottom" href="link">
<area shape="rect" coords="left,top,right,bottom" href="link">
<area shape="rect" coords="left,top,right,bottom" href="link">
<area shape="rect" coords="left,top,right,bottom" href="link">
<area shape="rect" coords="left,top,right,bottom" href="link">
</map>

For more help with image maps please contact our design team.