Jan
5

2


HTML: Images Use the <img> tag to place an image on your Web page. The src="" attribute stands for source or URL of the image. For an image to be seen on the Web, it must be upload to your host. The alt="" attribute specifies alternate text to be displayed if for some reason the browser
more

Jan
4

0


Simple Click-To-Enlarge Photo GalleryIf you have more than a couple photos, you may want to add a click-to-enlarge photo gallery. As long as eBay accepts Javascript, below is sample code for an easy to set up gallery that works real well. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 <table width="500" border="0" cellspacing="0" cellpadding="0"> <tr> <td style="
more

Jan
4

0


Preventing Photo Theft on eBayMany ask about the “No-Right-Click” Javascript to keep their images protected. This simply DOES NOT WORK. Besides some browsers not recognizing the code, would-be-thieves could have Javascript turned off, they can view the source code, drag the image to their desktop, and even do a screen shot cropping out everything but the image. Using the “No-Right-Click” script can also cause
more

Jan
3

0


My Images Are Not Showing on eBayThe most common reason images may not show up in your eBay listings or custom pages is using the wrong URL. Since your HTML is placed on eBay, and your images are on a different server you must use “absolute” URLs. Incorrect 1 2 3 <img src="images/graphic.jpg" alt="Graphic Name"> <img src="
more