Template Help
Note that when you make use of images in the HTML code of templates, you
must use a URL link to indicate their locations.
For example:
<img src="someimage.gif"> will not work.
You have to indicate the entire URL where someimage.gif is located. For example:
<img src="http://www.yourdomain.com/someimage.gif">
The <img is an HTML tag indicating that you want to insert an image in the HTML page. The src= part indicates that you want to specify the location of the image to be inserted. Some web editors will support inserting images from a web url and some won't. If your web editor does not support this, insert the image into the HTML page like usual and when finished edit the source of the HTML code and manually insert the URL path's to the images. Ensure that the images are on the server for the URL path's you specify.Example, editing the HTML source code:
Replace <img src="someimage.gif"> with
<img src="http://www.yourdomain.com/someimage.gif">