Web Hosting Talk







View Full Version : PHP/HTML Help Needed (WordPress Theme)


DataDork
08-05-2005, 06:46 PM
<hr class="low" />

<!-- footer ................................. -->
<div id="footer">

<p><strong>&copy; 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 ©.

Sting13
08-05-2005, 06:48 PM
If it is just to the other side of the just switch it over, i don't see what trouble your having. I would suggest a program that lets you preview your html pages. (Macromedia Homesite 5, Microsoft Frontpage). They are the ones I can think of at the moment.

Dan L
08-05-2005, 09:34 PM
HTML preview won't work due to the way WordPress's templating system is set up.

However, I'm with Sting--what problem do you have? Just cut/paste the copyright symbol and re-upload the footer file..

If you're having trouble with the symbol, &amp;copy; is the HTML-safe equivalent.