well... I think it's just an issue of having big lists. You could simply put Aa-ap and Ar-az in the same table cell.
HTML Code:
<a href="index.html">
<p style="text-align:left" class="anchorclass" rel="submenu1AA[click]" rev="lr">Aa-Ap</p>
</a>
<br>
<a href="index.html">
<p style="text-align:left" class="anchorclass" rel="submenu1AA[click]" rev="lr">Ar-Az</p>
</a>
BTW, you have lots of syntax errors in your html. among other things,
1. Some of your tags aren't closed properly:
<a href="" p style="" ...> needs to be
<a href=""> <p style="" ..>
2. Your tags are improperly nested:
<a><p></a></p> needs to be
<a><p></p></a>
There's lots of other stuff, but those seem the most urgent
Bookmarks