Tag Definitions %CLASSATT%
Apply custom classes to items in any manual list
This tag (Class attribute) can be used to apply class attributes to list or anchor items generated from a manual list. The tag is included in the snippet that builds the list item and the classes must be defined in the css, and their availability and purpose must be made known to the End User by the Reseller as this practical information is not conveyed by the system. The appropriate class is applied by the End User through one of the columns in the component editor manual list.
This tag has no attributes.
Example
In this example the list item code has been constructed to accept any classes that are defined in a manual list dialog box. Different styles have been applied to the first and third items.
<li class="%CLASSATT%"><a href="%LINK%">%TITLE%</a></li>
RENDERED OUTPUT:
<li class="blue_bkgnd"><a href="page1.html">Page 1</a></li>
<li class=""><a href="page2.html">Page 2</a></li>
<li class="big_and_red"><a href="page3.html">Page 3</a></li>