zenphoto 1.4.2 introduces comments pagination.
some themes don't work well with this new feature (zpArdoise, and zpGalleriffic as far I have tested it).
in these themes, there is a css rules on <div id=comments>.
but this div is included in the pagination and the display of comments is not correct (existing css rules are broken and I have no other div to apply new css rules).
is-it possible to add a <div id="comment-wrap"> to wrap pagination and comments list ?
it could be for example :
`
3 commentaires
<div id="comment-wrap">
<div class="Pagination"><!-- this is the jquery pagination nav placeholder -->
This content will be replaced when pagination inits.
<div id="comment_toggle"><!-- place holder for toggle button -->
<a name="c_171"></a>
<div class="commentinfo">
bourganel: on 10/01/2012,
<!-- class "commentinfo" -->
test
<!-- class "commenttext" -->
</div><!-- class "comment" -->
[...]
</div><!-- id "comments" -->
<!-- this is the jquery pagination nav placeholder -->
</div> <!-- end "comment-wrap" -->
`
if needed, I could create a ticket for that