A few problems

Associate
Joined
17 Mar 2004
Posts
1,562
I said i'd have a go at designing a small website for a friend. Starting to wish I hadn't now!

Anyway, I have a few nagging problems.

The body div dosen't reach down to the footer - theres always a 5-10px gap.

And how can I get the navigation links lined up?

http://dziremedia.co.uk/ovaloadradio/

Cheers for any help!
 
In the body class put text-align:center; and rename the second body class to main or something as it's confusing.

All your other divs are within your layout div so you should be able to get rid of things like

margin-left: auto;
margin-right: auto;
margin-top:0px;
margin-bottom: 0px;

and just put
margin: 0;
padding: 0;

For the nav, get rid of the table, and on the a classes just put something like margin: 5px 20px to get the same spacing inbetween each element.
 
Back
Top Bottom