The thing is, all you have is a bunch of text. If you want it to display a certain way, then you need to have some html in there. You can't just write:
Code:
1. Website Owner 2. 6 month Member 3. 1 year Member
and have it show up as:
Code:
1. Website Owner
2. 6 month Member
3. 1 year Member
You need to write:
Code:
</li>1. Website Owner <li>2. 6 month Member <li>3. 1 year Member
and acutally, more correctly, change the <ul>s in the template to <ol>s for an ordered list instead of an unordered list and then change the list to:
Code:
</li>Website Owner <li>6 month Member <li>1 year Member