I have a hard time getting the standard bullet list to show. For example:
<ul>
<li>item 1</li>
<li>item2<li>
<li>item3</li>
</ul>
This would show up as:
item 1
item 2
item 3
The BULLET never shows.
Any advice is greatly appreciated.
CN
© Copyright 2013-2017 DrupalExp - All Rights Reserved
Have 4 list styles corresponding with 4 classes as wrapper
1. list-1
2. list-2
3. list-3
4. list-4
You can use editor to create the list then view source mode to add the class above to ul element.
For example:
<ul class="list-1" style="padding:0;">
<li>item1</li>
<li>item2</li>
<li>item3</li>
</ul>