please advise how i get text of my footer to align properly in the center of my page: http://www.goldcoastchamber.com/wordpress/
footer.php code:
<div id="footer">
<h5>The GCCC is a not-for-profit 501(c) (6) non-government membership organization. Member of CIANJ, Member ICC, affiliated with<br /> NJAWBO Bergen Chapter, affiliated with Bergen Community College small business development center.</h5><br />
© 2009 Gold Coast Chamber of Commerce<br /> Designed by <a href="http://www.adfgadfgadfg.com" target="blank">adfgadfgadfg.com</a></div>
<p><span class="credits">© <?php echo date('Y'); ?> <a href="<?php bloginfo('home'); ?>"><?php bloginfo('name'); ?></a></p>
<p><a href="<?php bloginfo('rss2_url'); ?>">Entries (RSS)</a> - <a href="<?php bloginfo('comments_rss2_url'); ?>">Comments (RSS)</a></span><br /></p>
</div>
<?php do_action('wp_footer'); ?>
</div>
</body>
</html>
footer css:
/* Footer */
#footer {border-top:2px solid #e0e0e0; font-size:0.9em; clear:both; color:#777; font-weight:normal; line-height:1.7em; margin:0 auto; padding:10px 0; text-align:center; width:760px;}
#footer p {margin:0; padding:0;}
#footer a {color:#777; font-weight:normal; text-decoration:none;}
#footer a:hover {color:#555; text-decoration:underline;}
#footer strong a {font-weight:bold;}
#footer span.credits {font-size:1.1em;}
thanks!