> Hey all, > > I'm having a mind block on this embarrassingly simple problem. I've > got two > divs, one should hold text below the other, header, div; but the > text just > seems to disappear? I'm guessing it must have something to do with > the fact > that the header is positioned *absolutely* - but if not then the > whole thing > looks wrong?! > > http://www.henryfelton.co.uk/css/header.html > > Thanks, > > Henry
Hi Henry, Your are correct in the absolute positioning of the header. Because of that the text is hidden behind the banner. For a quick fix, if you add a padding-top: 120px, your text should pop out, as it's pushed below the header, like this: <div style="padding-top: 120px;"> <p>hello</p> </div> Mark ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
