Site: http://sebastiano.freehostia.com/
CSS: /style.css
I’m not overly sure what’s going wrong with the positioning of the boxes here. The header has a large space below it and the two in the centre are lopsided. Could someone enlighten me as to what’s causing it please?
Thanks!
I think that there is a default margin on the
<form>element which might be causing some display issues. Maybe you can also use a universal selector reset and see what that changes to help diagnose the problem*{margin:0;padding:0}or better yet: Design semantically and avoid table-based layouts (especially nested tables) and work from there.