Ok, I guess I see the difference, I guess I meant, I don't see where it makes a difference? It's not a 'bug' in the code, but more of a preference in the style. It's actually handled in the css for the board.
Here's a screen shot of my board, with the original inline code on the left, the li only code on the right.
If you really want to change the font size, go into the Style Manager & edit the 'Main CSS' file. At the very bottom, in the 2nd text box, change the attributes on the following items:
Code:
li.inline {
text-align:center;
font-size:15px;
}
li.inline a {
display:inline;
font-size:15px;
}
The default style that's applied when you are using just the li code is:
Code:
.smallfont
{
font: 10pt Helvetica;
}
so you could use that if you wish.
--JOsh