DataDork
08-05-2005, 06:46 PM
<hr class="low" />
<!-- footer ................................. -->
<div id="footer">
<p><strong>© Copyright <?php echo date("Y")." "; bloginfo('name'); ?>. All rights reserved.</strong><br />
Design by <a href="http://www.kingcosmonaut.de/">Sebastian Schmieg</a> . Hosting by <a href="http://www.datadork.com/">DataDork</a> . Powered by <a href="http://www.wordpress.org/">WordPress</a></p>
<?php do_action('wp_footer'); ?>
</div> <!-- /footer -->
</div> <!-- /container -->
</body>
</html>
Produces:
© Copyright 2005 James Edmonds. All rights reserved.
Design by Sebastian Schmieg . Hosting by DataDork . Powered by WordPress
Would like to change it to:
Copyright © 2005 James Edmonds. All rights reserved.
Design by Sebastian Schmieg . Hosting by DataDork . Powered by WordPress
I am simply looking to change the position of the ©.
<!-- footer ................................. -->
<div id="footer">
<p><strong>© Copyright <?php echo date("Y")." "; bloginfo('name'); ?>. All rights reserved.</strong><br />
Design by <a href="http://www.kingcosmonaut.de/">Sebastian Schmieg</a> . Hosting by <a href="http://www.datadork.com/">DataDork</a> . Powered by <a href="http://www.wordpress.org/">WordPress</a></p>
<?php do_action('wp_footer'); ?>
</div> <!-- /footer -->
</div> <!-- /container -->
</body>
</html>
Produces:
© Copyright 2005 James Edmonds. All rights reserved.
Design by Sebastian Schmieg . Hosting by DataDork . Powered by WordPress
Would like to change it to:
Copyright © 2005 James Edmonds. All rights reserved.
Design by Sebastian Schmieg . Hosting by DataDork . Powered by WordPress
I am simply looking to change the position of the ©.
