Hi,
Try the following, wrap your hidden lines in a DIV and apply SML as shown.
<ul>
<li>line 1</li>
<li>line 2</li>
<li>line 3</li>
<div id="p7SMLcontent_1" class="sml-content">
<div id="p7SMLwrapper_1">
<li> line 4</li>
<li>line 5</li>
<li>line 6</li>
</div>
<script type="text/javascript">P7_SMLop('p7SML_1',1,600,'Show More...','...Show Less',0,0)</script>
</div>
<a id="p7SML_1" href="#" class="sml-more">Show More...</a>
</ul>
Add this css rule:
#p7SMLcontent_1{
list-style: inside;
}
The downside is that your hidden lines will be indented slightly when shown.
Without the css rule they would be inline but you will lose the bullets.
The same thing can be achieved by selecting the indent option in the SML UI but the indent is much more pronounced.
Rod.