View Single Post
  #9 (permalink)  
Old 10-24-2008, 01:37 AM
Alan Alan is offline
Master Babbler
 
Join Date: Oct 2008
Location: UK
Posts: 249
Alan is a reputable WB member and has over 100 reputation pointsAlan is a reputable WB member and has over 100 reputation points
Default

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 &copy; 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.
Reply With Quote