Using arrows with jpgs

G

Guest

Hi there
I have several jpgs on a page and I need to use arrows to indicate various
things on them, so am used curved arrows. Obviously when I publish, depending
on the screen size, the arrows end up not pointing the location I had them on
pre-publishing. How do I lock lines to jpgs so they move together?
Thanks!
 
T

Tom Willett

I would recommend adding the arrows to the picture in a graphics program to
make them part of the image.
--
===
Tom Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/
===
| Hi there
| I have several jpgs on a page and I need to use arrows to indicate various
| things on them, so am used curved arrows. Obviously when I publish,
depending
| on the screen size, the arrows end up not pointing the location I had them
on
| pre-publishing. How do I lock lines to jpgs so they move together?
| Thanks!
 
D

David Berry

Why not add the arrows to the image in your graphics program and then insert
that on the page?
 
J

Jon Spivey

Hi Sarah,

If you don't want to add the arrows in your graphics program you should be
able to stick the images in a div then position the arrows - this way the
arrow will move with the image, eg
<style type="text/css">
#imageHolder{
position:relative;
width:200px;
}
#arrow{
position:absolute;
left:10px;
top:10px;
}
</style>
<div id="imageHolder"><img src=....><div id="arrow"><img
src=....></div></div>

The left and top position for #arrow will always be relative to the top left
corner of the image

Jon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top