Yeah I kinda figured it has something to do with my HTML; this is what I have. Everything is working fine with the exception of the "Next" and "Previous" buttons.
I'm assuming it's because I need to put something after "<a href="/comics/" for the Previous and Next sections, but I'm not sure what to put there. (Tried adding "previous" and "next" after that, but didn't work)
<ul id="comicnav">
<li><a href="/comics/1/" title="first comic" id="first" rel="start"><img src="linkforfirstbutton.jpg" alt="first" /></a></li>
<li><a href="/comics/" title="previous comic" id="prev" rel="prev"><img src="linkforpreviousbutton" alt="previous" /></a></li>
<li><a href="/comics/" title="next comic" id="next" rel="next"><img src="linkfornextbutton.jpg" alt="next" /></a></li>
<li><a href="/comics/" title="latest comic" id="last" rel="index"><img src="linkforcurrentbutton.jpg" alt="last" /></a></li>
<br>
<li><a href="/comics/random/" title="Random" id="random" rel="random"><img src="linkforrandombutton.jpg" alt="random" /></a></li>
<li><a href="/archive/" title="Archive" id="archive" rel="archive"><img src="linkforarchivebutton.jpg" alt="random" /></a></li>
</ul>
...Thanks again for the help! :)