View Single Post
  #2  
Old 09-04-2007, 08:16 AM
IcIshoot is offline IcIshoot

Join Date: Mar 2004
Location: Farmington Hills, MI
Posts: 1,473

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>
Reply With Quote