For changing the footer, go into the ZMI. Here you find the footer template in the <site_root>/portal_view_customizations folder.

Edit the plone.footer file to something like:

1
2
3
4
5
6
7
8
9
10
11
<div metal:define-macro="portal_footer"
  i18n:domain="plone"
  class="row">
  <div class="position-0 width-full cell">
    <div id="portal-footer">
      <p>
      Designed by <b>G Rossen</b> | <a href="http://rossen.be">r o s s e n . be</a>
      </p>
    </div>
  </div>
</div>

This should change your footer to the above text.