28. Images I place in my layout using the HTML <img> element are broken.
Images can be placed in a layout using the HTML <img> element. For example:
<img src="C:\pictures\money.gif" border="0">
A broken image usually occurs because the path to the image, specified with the src attribute, is invalid. Check that this path is correct first.
When using the Insert Image button on the Cell dialog, the path to the image will be inserted automatically, and will be relative if the image file is located within the Tournament Director's installation folder, and it will be absolute if it is located elsewhere. Both relative and absolute paths are acceptable.
Note that the following is only relevant to version 2.3.2 and earlier:
However, if you place your image in the images folder installed with the Tournament Director, you must reference the image using fully-qualified (absolute) paths.
For example, say I copy a picture "money.gif" to the "C:\Program Files\The Tournament Director 2\images" folder. I then insert the image into my layout by using the following HTML:
<img src="images\money.gif" border="0">
This will not work. The path to the file, in this case, must be specified absolutely:
<img src="C:\Program Files\The Tournament Director 2\images\money.gif" border="0">