To add an image to a template, copy it to the [Template path]/Themes/[Colour scheme name]/directory and add the IMG element to the corresponding place of a template source code file. The full path to the Images/ images directory (from the root site folder to the folder of the currently selected color theme) is stored in the $Theme$ variable.
For example, if an image file named bullet.gif is located in the images directory of the red color scheme ([Template path]/Themes/red/images/bullet.gif), then the path to this file in the HTML code of the template should look as follows:
<img src="$Theme$/images/bullet.gif" />
Note that paths to specific header banners or menu images (and therefore located not in the images directory) should be still specified in the same way as if the images were located in the images directory. For example, the IMG elements of the following images:
[Template path] / Themes / red / headers / header1 / headerBullet.gif
or
[Template path] / Themes / red / menus / menu1 / menuBullet.gif
should look as follows:
<img src="$Theme$/images/headerBullet.gif" />
and
<img src="$Theme$/images/menuBullet.gif" />