I’m working on a site right now and this is what I have for displaying some posts.
<ul>
{exp:weblog:entries weblog="press" orderby="date" sort="desc" limit="4" paginate="bottom"}
<li>
<a href="http://{path=press/entry}">{thumb_image}</a>
<a href="http://{path=press/entry}" class="press-date">{entry_date format="%F %Y"}</a>
</li>
{/exp:weblog:entries}
</ul>
{paginate}
<div id="press-scroll-container">
{if previous_page}<a href="http://{auto_path}" class="press-scroll-previous"></a>{/if}
<div id="press-scroll-divider"></div>
{if next_page}<a href="http://{auto_path}" class="press-scroll-next"></a>{/if}
{/paginate}
</div>]The element only has room for 4 posts per a page so thats why I need to use pagination. The problem is, my entries are being displayed in a list and adding pagination to the list messes up the styling/layout of the page. Is there a way I could get around using the paginate tag outside of the entries tag?