Q. My images are not showing up! What's wrong?
A. Usually your image tags are incorrect. Either the address
of the image you are trying to use is unavailable or does not exist, the tag is incorrect, or your server is down. (time to
change hosting companies!) An image tag should look like this :
<p align="center"><img border="0" src="Place the
address of YOUR IMAGE here"></p>
Variations of the image tag could include :
<p align="center"><img border="0" src="Place the
address of YOUR IMAGE here"></p>
<p align="right"><img border="0" src="Place the
address of YOUR IMAGE here" width="432" height="168"></p>
<p align="left"><img border="0" src="Place the
address of YOUR IMAGE here" ></p>
This is the image tag I most often use in my auctions.
Quick Explanation -
P ALIGN stands for the alignment of the paragraph. Your
paragraph in this case is your image. Here your options are "center", "left", or "right".
</P> Is the end of the paragraph. This tells the computer
where the paragraph ends, where as P tells the computer where the paragraph begins. The computer places a space above and
below the paragraph.
IMG BORDER stands for the...Image Border! You're options
with this are unlimited, you can use any number. The number 0 is for no image border at all.
SCR stands for the image source. This is where that
image is located at this very moment. This is also called you're image's URL or ADDRESS. If you place this URL in the top
of your web brower as you would for a webpage and hit enter, your image should appear on the screen.
WIDTH and HEIGHT are exactly what they say, change these
if you want a larger or smaller image. Just dont make them bigger than the size of your actual image, or it will appear blurry
or strectched. You do not have to specify the height and width of your image, if you don't the image will appear in it's original
size.
An image that is linked to a source on the web would look
like this :
<a href="LINK HERE"><img border="0" src="IMAGE
ADDRESS HERE" width="260" height="158">
A HREF tells the computer where the link will be. Always
make sure the " are in the right place, on either side of the URL. The rest is a normal image tag.
If you want the link to open up into an email messege, the
code will look like this :
<a href="mailto: youremailaddress@whereever.com"><img
border="0" src="IMAGE ADDRESS HERE" width="260" height="158">
Much the same, except for the MAILTO: part, this obviously
tells the computer that the link is actually an email address.