Not a bug Problem with <ul><li></li></ul> with 1.2.4 in pages

Pages say to use html and when I use

Code:
<ul>
<li></li>
</ul>

it doesn't output like it should.

You can see this page as an example: http://www.caverse.com/pages/vote/

The part that has the vote links are inside the <ul></ul> and each line has the <li></li> around them.

I tried using the default xenforo template and it was the same thing.
 
What are you expecting it to output like?

Like this?
  • Vote Link 1: MinecraftServers <—Click to Vote!
  • Vote LInk 2: MCIndex <—Click to Vote!
  • Vote Link 3: MineStatus <—Click to Vote!
  • Vote Link 4: PlanetMinecraft <—Click to Vote!
  • Vote Link 5: MinecraftMP <—Click to Vote!
If so, try and wrap your entire page content in a div with a class of baseHtml, e.g.

HTML:
<div class="baseHtml">
Your content here
</div>
 
What are you expecting it to output like?

Like this?
  • Vote Link 1: MinecraftServers <—Click to Vote!
  • Vote LInk 2: MCIndex <—Click to Vote!
  • Vote Link 3: MineStatus <—Click to Vote!
  • Vote Link 4: PlanetMinecraft <—Click to Vote!
  • Vote Link 5: MinecraftMP <—Click to Vote!
If so, try and wrap your entire page content in a div with a class of baseHtml, e.g.

HTML:
<div class="baseHtml">
Your content here
</div>

worked perfect, thanks!
 
Top Bottom