View Full Version : How would I code this???


Domenic
02-24-2007, 09:25 PM
http://img407.imageshack.us/img407/5453/graphicislandpf2.jpg (http://imageshack.us)

I made this in literally two minute. It is most definitely not the final version but I am so confused on how to code it.

That is a flat image. How would I make the buttons interactive? Like the home button, the island cafe button? I don't understand any of it.

iGeek
02-25-2007, 12:05 AM
What you would do is split it up into all the different buttons. Then put them back together in a table:

<table border="0">
<tr><td><img src="button1.jpg"></td></tr>
<tr><td><img src="button2.jpg"></td></tr>
<tr><td><img src="button3.jpg"></td></tr>
</table>

etc. for all of them. Then go back and name them and use JavaScript to create rollovers. :) Post if you need more help.