You're welcome. I'm new to this CSS stuff myself so it's been a great way find out what's doing what.
I also made the footer smaller and it does look better, so here's what I did to that:
In the footer section in the stylesheet, I changed the padding of 10 to 0 (leaving the line in place in case you want to change it to something else), then I changed the footer div in index.htm from this:
...your exciting journey into cloth diapering and natural parenting!</p>
<br />
</div>
<div id="footer" align="center">
<p><br />
</p>
<p class="smalltext">© 2008 Eco Baby Buzz </p>
<p class="smalltext"><br />
</p>
</div>
</div>
<script type="text/javascript">
Into this:
...your exciting journey into cloth diapering and natural parenting!</p>
<br />
</div>
<div id="footer" align="center">
<br />
<p class="smalltext">Website Copyright © 2008, Eco Baby Buzz - All Rights Reserved.</p>
<br />
</div>
</div>
<script type="text/javascript">
Not sure if that was the right way to do things with the padding but it seems to be OK.
|