Mercurial > hg > rr-repo
annotate sites/all/modules/views/help/style-list.html @ 2:b74b41bb73f0
-- Google analytics module
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 22 Aug 2013 17:22:54 +0100 |
parents | ff03f76ab3fe |
children |
rev | line source |
---|---|
danielebarchiesi@0 | 1 The <strong>List</strong> view style will display every row of the view as part of an HTML list construct. For example: |
danielebarchiesi@0 | 2 <ul> |
danielebarchiesi@0 | 3 <li> Row 1 </li> |
danielebarchiesi@0 | 4 <li> Row 2 </li> |
danielebarchiesi@0 | 5 <li> Row 3 </li> |
danielebarchiesi@0 | 6 <li> Row 4 </li> |
danielebarchiesi@0 | 7 </ul> |
danielebarchiesi@0 | 8 |
danielebarchiesi@0 | 9 You may select whether or not the list is <em>ordered</em> which just means whether or not it uses numbers instead of the bullet: |
danielebarchiesi@0 | 10 |
danielebarchiesi@0 | 11 <ol> |
danielebarchiesi@0 | 12 <li> Row 1 </li> |
danielebarchiesi@0 | 13 <li> Row 2 </li> |
danielebarchiesi@0 | 14 <li> Row 3 </li> |
danielebarchiesi@0 | 15 <li> Row 4 </li> |
danielebarchiesi@0 | 16 </ol> |
danielebarchiesi@0 | 17 |
danielebarchiesi@0 | 18 The list style also uses a <em>row style</em> which means that it doesn't care what the actual output for each row of the view is. |
danielebarchiesi@0 | 19 |
danielebarchiesi@0 | 20 If you need information about using CSS to style list views, you may find this <a href="http://www.alistapart.com/stories/taminglists/">A list apart guide to styling lists</a> useful. |