We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Unordered Lists? [Answered] | Forum

Topic location: Forum home » Support » General Questions
Sean T
Sean T Jan 5 '13
Unordered lists using <li> tags aren't displaying on my pages. Is there some way to make bullet lists work in Oxwall?
The Forum post is edited by Alia Oct 22 '13
Duncan
Duncan Oct 16 '13
Hey,


This post from January still appears to be very relevant, we've just run into this problem while integrating Site CKEditor


Is there somewhere we can allow <ul>, <ol> and <li> tags?

Alia Team
Alia Oct 17 '13
Duncan, Sean, we don't allow stylizing of unordered lists, because we use them within the themes ( ex menu items). If restriction is removed then all places within your theme where <ul> <li><ol> are used will show in form of a list ( with bullets, circles and etc. next to each item). 

If you would like to use unordered lists within the WYSIWYG:

1. click "HTML" button.
2. insert your html code with unordered list. Make sure to add following styles ( based on "Origin" theme, you might want to correct padding for your theme).

EXAMPLE:
<ul style="list-style:circle!important; padding:20px;">
  <li>1</li>
  <li>2</li>
  <li>3</li>
</ul>
Bernd Eckenfels
Bernd Eckenfels Jul 31 '15
The themes should really turn off the list-styles only for specific (menu) classes. (and/or turn them on for specific classes used in text content).
Daisy Team
Daisy Aug 3 '15
Topic was moved from Bug reports and troubleshooting.
Marc Mueller
Marc Mueller Aug 16 '15
there is also a <ul> css-class "ow_regular" (which is used on the default welcome-html-widget on the dashboard)


So this did the job for me:


<ul class="ow_regular">
  <li>1</li>
  <li>2</li>
  <li>3</li>
</ul> 

Taissa Team
Taissa Aug 17 '15
Marc, thank you for sharing one more solution for this issue.