The Icon store tag can be written in two different ways.
Let's say you add an item with an ID of 10 to Catalog Manager, and this item contains an icon. You have the following choices when creating the store tag to display your item's icon.
Version 1
<!--#ystore_catalog id="10" field="icon" format="html" -->
This is the most straightforward way to display your item's icon using a store tag. This store tag would display the icon on your web page wherever you inserted it.
Note: Because there are two different ways to use the Icon store tag, the Store Tag Wizard will not automatically insert format="html" (as seen above). If you are using the Icon store tag, you must add format="html" inside the store tag for the image to appear.
Version 2
If you would like to customize the presentation of your icon (for example, to include an alt tag, border setting, or alignment setting) you could use the following version of the Icon store tag.
<!--#ystore_catalog id="10" field="icon" -->
Using this store tag generates the icon's URL (that portion of an HTML <img> tag that normally appears in quotes) as indicated below.
<img src="your_icon_URL" -->
If you use this version of the Icon store tag, be sure to place it within an <img> tag or other appropriate HTML tag, as in the example below. Otherwise, your web page may not display properly.
<img src="<!--#ystore_catalog id="10" field="icon" -->" height="X" width="X" alt="your alt text here" -->