Okay, okay. I got the footer down (wewt!) except it’s only on the home page.
functions.php
<?php
if ( function_exists('register_sidebar') )
{ register_sidebar();
register_sidebars(3, array('name'=>'Footer %d')); }
?>
The bottom of page.php
<div class="footer-bottom">
<div id="footerwidgets">
<div id="footer-left">
<ul class="footer-list">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer 1') ) : ?>
<li>
<?php endif; ?>
</ul>
</div>
<div id="footer-middle">
<ul class="footer-list">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer 2') ) : ?>
<li>
<?php endif; ?>
</ul>
</div>
<div id="footer-right">
<ul class="footer-list">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer 3') ) : ?>
<li>
<?php endif; ?>
</ul>
</div>
</div>
<br>
<br clear="all" />
</div>
and cssed it a little. When I put the html on the footer.php file it goes above the header. Can you give me a hint on how to make the footer appear on all pages?
Sorry for being such a bother about this. This footer is the last detail on the website before I’m (hopefully) done and send it to the client.