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
more

Jan
4

0


Simple eBay Listing Photo Gallery If 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 <table width="500" border="0" cellspacing="0" cellpadding="0"> <tr&
more

Jan
4

0


Preventing Photo Theft on eBay Many 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 “
more

Jan
3

0


Images Not Showing on eBay The most common reason images are not showing on 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 <img src="images/graphic.jpg" alt="Graphic Name"> <
more