Chris Stratford blurted out:


> Awwww really!
> That’s what it was, ok thanks!
>
> That fixed the head problem, now I know why...
>
> Can I get around that?
> Anyway possible?
> It needs to be absolute - because of the table look it has now...
>
> Thanks!
>

Couldn't you do that portion like a three column layout, something like this:

<html>
<head><title>Three column header</title>
<style>

#header {
  text-align: center;
}

#header_left {
  float: left;
  text-align: left;
  width: 20%;
}

#header_right {
  float: right;
  text-align: right;
  width: 20%;
}

.clearer {
  clear: both;
}

</style>
</head>
<body>
<div id="header">
<div id="header_left">TITLE</div>
<div id="header_right">LOGOUT LINK</div>
LOGININFO
</div>
<div class="clearer">&nbsp;</div>
<div class="content">Your selectable content here</div>
</body>
</html>
*****************************************************
The discussion list for http://webstandardsgroup.org/
*****************************************************




Reply via email to