bellelect
Newbie
Posts: 1
Registered: 7/18/2008
Member Is Offline
|
| posted on 7/18/2008 at 03:54 PM |
|
|
Menu Tree Pro in UL
I am having to place a menu in a subset <li>.
<ul>
<li>List<br />
<ul>
<li><script language="JavaScript" type="text/javascript">new tree (TREE_ITEMS,
TREE_TPL);</script></li></ul></li></ul>
The problem occurs with the first item in the tree list rendering with a subset bullet. All formating (css, etc) off. Is there a way to prevent this?
|
|
|
tigra
Administrator
Posts: 1990
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 7/18/2008 at 10:15 PM |
|
|
The tree is block element (like <div>) while <li> expect inline element (like <span>). This can be the reason for the problem.
|
|
|