m a x i m u s wrote:
That's a good idea, thanks for the suggestion! Some images, however, do have more than one hyperlink, so i'd have to do the latter idea you suggested.
I used the slice tool in PhotoShop and then edited the properties to link it to a hyperlink. Then I saved for web and devices as html and image. Am I supposed to upload the image file or the html file to the mainpage, if you know?
If it's the mainpage and you have to use hotspots / image maps then I'd add in the html through the editor itself via the Admin.
So for example you set up your image:
Code:
<img border="0" alt="my pic" src="images/my_homepage_pic.jpg" usemap="#Map1">
Then add in the map tags:
Code:
<map id="Map1" name="Map1">
<area href="pages.php?pID=1" shape="RECT" coords="0,0,650,275">
<area href="pages.php?pID=2" shape="RECT" coords="0,300,650,625">
</map>
You might be able to use the map tag info out of the html folder created with the image from pshop, depends.
Simon