Pcfr34k

Topic: Slim down footer

Im trying to slim down the footer a bit.
I have no data in it, but no footer makes the website ugly.
So how do I slim down the footer, half the height is great.

I tried some things in css/screen.css , but can't manage to slim the footer down.

What piece of code do I need to edit?

bradenshaw

Re: Slim down footer

If you haven't already figured it out then here you go...

In screen.css you will find this line:

div.footer{color:#888; font-size:11px; background:#F2FCFF url(../img/footer-bg.png) no-repeat center top;

My suggestion would be to replace the "backround" value to match your needs.

e.g. background: #FFFFFF;

bradenshaw

Re: Slim down footer

Or in the same line you could change the "height" value.

div.footer{color:#888; font-size:11px; background:#F2FCFF url(../img/footer-bg.png) no-repeat center top; text-align:center; float:left; width:100%; padding-top:12px; margin-top:30px; height:14em}

Last edited by bradenshaw (2010-03-19 15:01:20)