if you want every thing centered:
add an align=center to the div opening tag - like so
Code:
div class="sidebox" align="center">
<h1>Wise Words</h1>
<p>"All one really needs to achieve something is practice, and the right tools."</p>
<p class="align-right">- Me, <a href="http://www.novahq.net/">novahq.net</a></p>
</div>
for just the quote it self
add align="center" to your opening <p> tag for the quote:
Code:
<p align="center">"All one really needs to achieve something is practice, and the right tools."</p>