store.categoryListItem

Available Since: V1.2.4

Chunk used to format the items in the category list.

fusionCSS 2

<li class="span-t12 span-s6 span-m3 [[+class]]">
	<a href="[[+link]]">
		<img src="[[+imgsrc]]" alt="[[+title]]" />
		<span>[[+title]]</span>
	</a>
</li>

Bootstrap 3

<li class="col-xs-12 col-sm-6 col-md-3 [[+class]]">
	<a href="[[+link]]">
		<img src="[[+imgsrc]]" alt="[[+title]]" />
		<span>[[+title]]</span>
	</a>
</li>

Foundation 5

<li class="small-12 medium-6 large-3 columns [[+class]]">
	<a href="[[+link]]">
		<img src="[[+imgsrc]]]" alt="[[+title]]" />
		<span>[[+title]]</span>
	</a>
</li>
Placeholder Description
link The address of the page holding the product category.
title The title of the product category.
imgsrc The location to load the category image from.
desc The description of the product category.
class The CSS class to apply.




TOP