Click to See Complete Forum and Search --> : HTML for Logo


alwayslearning
02-03-2006, 12:22 PM
I would like to know how you can add links to a logo image created in photo program. I create templates for ebay and see that some people have buttons on their logos but the logos are images. :confused:

Also, what program (easiest as possible :eek: ) would you recommend for creating a flash logo?
thanks! :)

TheBearMay
02-03-2006, 02:31 PM
Using pure HTML:

<a href="http://someURL" style="text-decoration:none"><img src="logo.jpg" /></a>

can also be done:

<img src="logo.jpg" onclick="document.location.href='http://someURL'" />

LJK
02-03-2006, 09:40 PM
Hi -

And kids, be sure not to forget your title="" attribute for all links! ;-)

The Little Guy
02-04-2006, 12:14 AM
Addition:
You should also add an alt="Text Here if desired" to the img element