4368e6be09a5f447babb3b0191ea4a8a19a96887
kate
  Thu Jan 19 13:22:07 2017 -0800
Make ol and ul list items consistence in indent and line spacing. refs #18504

diff --git src/hg/htdocs/template.html src/hg/htdocs/template.html
index fed7418..807fd17 100755
--- src/hg/htdocs/template.html
+++ src/hg/htdocs/template.html
@@ -71,38 +71,40 @@
 <dt>Numbered list</dt>
 <dd>
 Use the 'ol' (ordered list) tag to enclose the full list, then 'li' for each list item.
 </dd>
 
 </dl>
   </div>
 
 <!-- Right column -->
   <div class="col-md-6">
     <h2>Another section</h2>
 
 <!-- Subsections -->
       <h3>List Examples</h3>
         <p>
-        Here is a bulleted list ('ul' and 'li' elements):
+        Here is a bulleted list ('ul' and 'li' elements). To suppress the 'bullet' add the
+        class 'gbsNoBullet' to the 'ul' tag.
         </p>
 <!-- Bulleted list example -->
-      <ul class="gbsNoBullet">
+      <ul>
         <li>red</li>
         <li>white</li>
         <li>blue</li>
       </ul>
+<p>
 
 <!-- Numbered list example -->
     <p>
     Here is a numbered list ('ol' and 'li' elements):
     </p>
     <ol>
       <li>
       <strong>chrom</strong> - The name of the chromosome (e.g. chr3, chrY, chr2_random) or 
       scaffold (e.g. scaffold10671).</li>
       <li>
       <strong>chromStart</strong> - The starting position of the feature in the chromosome or 
       scaffold.  The first base in a chromosome is numbered 0.</li>
       <li>
       <strong>chromEnd</strong> - The ending position of the feature in the chromosome or scaffold. 
       The <em>chromEnd</em> base is not included in the display of the feature.