The Visual Identity is a part of the UWA Communications Strategy, and its use must be authorised by the University Website Office.
Lists help readers scan information, and require minimal punctuation.
This page details the different styling options available. Information about how and when to use lists is available in the Content Style Guide.
Tables of Contents (or "toc") sit above the main text, alothough an introductory paragraph can be used above the contents. It can be used only with an ordered list (that is a list with numbers not bullets).
To demonstrate its use, a table of contents has been created for the remainder of this page. To create the link from the contents item, anchors have to be placed next to the area to which it links. Nomally the anchor is next to an H3.
The buttons for creating a numbered or bulleted list are next to each other in the WYSIWYG div editor toolbar, and are similar in appearance to icons you find in MS Word.
Like Word, you can create a list by either clicking on the appropriate icon and then typing, or select (highlight) text you have already entered, and then click either one of these buttons to convert it to a list.
To enter a new item in the list, press Enter at the end of a list item.
To end the list, press Enter twice.
To apply a style to a list, highlight every line in the list and select one of the choices in the -- select css styles -- dropdown menu. (NB It is important that you highlight from left to right or the class might not be applied.)
Styles that apply to lists are:
Regular lists do not require a special class.
<ol>
<li>[regular list copy (one to two lines per list item)]</li>
</ol>
<ol class="list-lower-alpha">
<li>[regular list copy (one to two lines per list item)]</li>
</ol>
<ol class="toc">
<li>[regular list copy (one to two lines per list item)]</li>
</ol>
<ul>
<li>[regular list copy (one to two lines per list item)]</li>
</ul>
<ul class="linklist">
<li>[linklist copy (for linked list items)]</li>
</ul>
<ul class="listpadding">
<li>[extra padding list copy (for lists containing a paragraph per list item)]</li>
</ul>
<ul class="nobullet">
<li>[nobullet list copy (for very special cases concerning semantics)]</li>
</ul>
<dl class="list">
<dt>[list copy (for list items with definitions)]</dt>
<dd>A definition for that item, such as a short description.</dd>
</dl>
<dl class="linklist">
<dt>[linklist copy (for linked list items with definitions)]</dt>
<dd>A definition for that link, such as a short description.</dd>
</dl>
<dl class="list-columned">
<dt>Columned Definition list title</dt><dd>Definition list item</dd>
</dl>
<dl class="list-columned list-columned-size-7">
<dt>Columned Definition list size 7</dt><dd>Definition list item</dd>
</dl>
<dl class="list-columned list-columned-size-17">
<dt>Columned Definition list size 17</dt><dd>Definition list item</dd>
</dl>