alittlebitoffiction sent: In your fire and ice theme, is there a way to put the next button at the bottom of the page?

Yes. Here is one way you could do it. In the code, find and delete:

{block:Pagination}
{block:PreviousPage}<li><a href=”{PreviousPage}”>previous</a></li>{/block:PreviousPage}
{block:NextPage}<li><a href=”{NextPage}” id=”nextPage”>next</a></li>{/block:NextPage}
{/block:Pagination}

Next, add this between the style tags <style> </style>:

#jump {
        position: fixed;
        bottom: 10px;
        right: 10px;
}

Finally, add this between the body tags <body> </body>:

        {block:Pagination}
<div id=”jump”>
        {block:PreviousPage}<a href=”{PreviousPage}”>previous</a>{/block:PreviousPage}
        {block:NextPage}<a href=”{NextPage}”>next</a>{/block:NextPage}
        </div>
        {/block:Pagination}

This will make the next and previous buttons appear fixed on the bottom right of your screen.