|
Posted by Roy A. on 02/21/07 02:12
On 21 Feb, 00:54, "Chris" <nos...@btinternet.com> wrote:
> If you go tohttp://194.129.129.161/test.htmCan anyone tell me why my
> footer in my layout is not pushed down beneath the textual content div. The
> footer div in IE 7 and Firefox goes across the top of my text even though
> the div appears beneath the text div.
>
> This will form the basis of a database driven system so I will not know how
> big the text will be. I have posted link as it is little difficult to
> explain. Regards, Chris.
Your document is encoded in windows-1252. Try to use utf-8 or include
<?xml version="1.0" encoding="windows-1252"?>
in you document.
Use 'min-height:400px' insted of 'height:400px', or no height at all.
Put the styles in a stylesheet and use an IE conditional comment
<!--[if lt IE 7]>
<style type="text/css">
#navigation { height: 400px }
#content { height: 400px }
</style>
<![endif]-->
Navigation:
[Reply to this message]
|