-
Notifications
You must be signed in to change notification settings - Fork 0
NuiBasicList
maxcal edited this page May 16, 2011
·
1 revision
nuiBasicList is a versatile way to create generic "media lists" (meaning a list with an image to left and text to the right). It supports both DIV and UL markup.
It is suitable for most kinds of lists.
.pane - generic list item .imageHolder - holder on left side, can contain any HTML content such as images, video and text .contentHolder - holder on right side, can contain any HTML content such as images, video and text
nuiBasicList can be constructed with the nuiBuilder.
<ul class="nuiBasicList t1 skin2">
<li class="pane">
<div class="imageHolder">
<!- place image tag here ->
</div>
<div class="contentHolder">
<!- place content here ->
</div>
</li>
<li class="pane">
<div class="imageHolder">
<!- place image tag here ->
</div>
<div class="contentHolder">
<!- place content here ->
</div>
</li>
</ul>
NONE