Forum Moderators: open
<td width="150px"><ol type="disc"><a class="standard" href="#">Test</a>
<li><a class="list" href="#">asdgasdg</a></li>
<li><a class="list" href="#">asdgasdg</a></li>
<li><a class="list" href="#">asdgasdg</a></li>
<li><a class="list" href="#">asdgasdg</a></li>
</ol>
</td>
I also tried styling the list tags in CSS, and changing the margin or position works, but declaring bullet properties like "list-style-type: square" still shows no result.
<ol> or ordered list, which should give a numbered list of items. If you want to use a disc, you should be using an unordered list, or <ul>. The second issue you have is that the first link (Test) is not enclosed in a
<li></li> - either is is part of the list, or it should be outside the <ul> element. Does this work?:
<td width="150px">
<p><a class="standard" href="#">Test</a></p>
<ul>
<li><a class="list" href="#">asdgasdg</a></li>
<li><a class="list" href="#">asdgasdg</a></li>
<li><a class="list" href="#">asdgasdg</a></li>
<li><a class="list" href="#">asdgasdg</a></li>
</ul>
</td> Have you put your page through the HTML validator [validator.w3.org]?
Thank you kind patron
So in short, i think the fix you provided here solved the issue of no bullets in any browser, and the padding quirk solves the issue of no bullets in specific browsers.
Thanks for your help!