You are here:  » Insert personal Information & copyright in footer

Support Forum



Insert personal Information & copyright in footer

Submitted by Tony on Mon, 2011-01-17 20:15 in

Hello, I'll like to add following information to the footer (centered). How do I proceed ?

<a href="/about.php">About Me</a> &nbsp; <a href="/privacy.php">Privacy</a> &copy;2011 My Name

Thanks

Submitted by support on Tue, 2011-01-18 09:33

Hi Tony,

To add your links and copyright message, create a new file inside your /html/ folder called user_footer_before.php as follows:

html/user_footer_before.php:

<p style='text-align: center'>
<a href="/about.php">About Me</a> &nbsp; <a href="/privacy.php">Privacy</a> &copy;2011 My Name
</p>

I modified your text slightly as shown above to link to the local files /about.php and /privacy.php and to use the HTML entity for the copyright symbol.

If you want to create additional pages that have the same look and feel as the rest of your site, you can create them as follows:

about.php:

<?php
  require("includes/common.php");
  require("html/header.php");
?>
  <h1>About Us</h1>
  <p>This is a page all about us!</p>
<?php
  require("html/footer.php");
?>

Cheers,
David.
--
PriceTapestry.com