Sorry, back.
Compare your code to one I use on a blog that shows the category name at the top of the list, and a list of entries in that category showing the entry title and date posted.
Your code in the category archive template:
CODE
<MTCategories show_empty="1"><br>
<a href="<$MTCategoryArchiveLink$>"><$MTCategoryLabel$></a><br><br>
</div>
<div class="texto">
<MTEntries category="<$MTCategoryLabel$>
<a href="<$MTEntryPermalink$>"> <$MTEntryTitle$></a></span><br /><br>
</MTEntries>
<br /><br />
</MTCategories>
Compare that to this code:
CODE
<div class="ctitle">
<i>Topic:</i> <MTArchiveCategory upper_case="1"></div>
<div class="blogbody">
<MTEntries sort_order="ascend" sort_by="title">
<div class="cat-title">
<a href="<MTEntryPermalink>"><MTEntryTitle></a> <span class="posted"><i>(posted <MTEntryDate format="%m/%d/%y">)</i></span></div>
</MTEntries>
You don't need the category tags as you've shown them. My code above
will give this result.Also, you show links to your categories on your category archive page within the content area, yet you also have links out in the left column. Is there a specific reason for the redundancy?