PDA

View Full Version : ImageReady step two?


bp76
11-23-2002, 07:58 PM
Hi,
Anyone using Imageready to create slices? If so, could you help on the second step in the slicing process please -
I am able to create the base image, and various slices. I can save the sliced image and open it in fp. What I don't understand is where to insert the code so that when a slice is clicked, you are sent to somewhere useful (image / page etc.).
Any help appreciated.
Bp

Zero Angel
11-23-2002, 08:39 PM
Go into your code and add a link (<a href="someplace.html">) in front of your your image code. There will be a border around your image, so you'll have to go into the <img> tag and specify border="0".

The resulting code would look something like this:
.............
<TD>
<a href="somelink.html">
<IMG SRC="images/amfbg_03.jpg" WIDTH=459 HEIGHT=57 ALT="" border="0"></a></TD>
..............

The text in red is the stuff that you'd likely add. The href is where you want your link to point to.

DCElliott
11-24-2002, 10:04 AM
You also have to specify cellspacing="0" cellpadding="0" in your table tag so there is no separation between your slices.

Serif Software's PhotoPlus also does image slicing and will produce the HTML for you, or alternatively, you can create a client-side image map.

bp76
11-25-2002, 12:22 PM
Appreciate the help. One of these days, I might actually make something useful!