This is a migrated thread and some comments may be shown as answers.

Html TextBox indenting

1 Answer 129 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
squarewave
Top achievements
Rank 1
squarewave asked on 25 Feb 2014, 01:27 AM
Hello, 

I'm using HtmlTextBox with 2 levels of Unordered Lists, but they're all showing on the same indent level.. meaning the bullet points on the inner UL are different, but indentation is flat, so impossible to tell they're sub-bullets. 

same thing is happening with nested Ordered List. 


my html is structured ad: 

<ul>
   <li>..</li>
   <li>..</li>
   <ul>
      <li>...</li>
      <li>...</li>
    </ul>
</ul>

1 Answer, 1 is accepted

Sort by
0
KS
Top achievements
Rank 1
answered on 27 Feb 2014, 02:19 PM
Hi,

Try this HTML structure:
<ul>
<li>.11.</li>
<li>.222.</li>
<li>
        <div>nested</div>
        <ul>
             <li>.nn..</li>
             <li>..bbb.</li>
         </ul>
</li>
<li>777 ..</li>
</ul>

-KS


Tags
General Discussions
Asked by
squarewave
Top achievements
Rank 1
Answers by
KS
Top achievements
Rank 1
Share this question
or