I have the following, very simple setup:
<table>
<tbody>
{exp:weblog:entries weblog="xxx" limit="50" paginate="bottom" disable="member_data|trackbacks"}
{paginate}
<div>Seite {current_page} von {total_pages} Seiten {pagination_links}</div>
{/paginate}
<tr>
{some_code}
</tr>
{/exp:weblog:entries}
</tbody>
</table>but it always places the pagination ABOVE the table. it is putting it outside the table, which is fine, but above, instead of below…
if I use paginate=“both” it places both paginations above the table…
<div>Seite 1 von 3 Seiten …</div>
<table>
<tbody>
<tr>
<some html>
</tr>
</tbody>
</table>I am on EE 1.7
is this a known issue?
cheers
stefan