"Broadripple Is Burning" by Margot and the Nuclear So and So's
21 notes
Origin: andrewgomezzz | Via: andrewgomezzz
I hate having all of these neat ideas for art and then not having the skills necessary to pull it off.

Crow from Fragile Dreams. This was as far as I got before quitting. I’ll finish it one day.
Back to practicing.
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.