Hey Robert,

You are a genius!
Thank you so much for helping me out on that!
It worked perfectly!

I could never get a 3 column layout working properly without using 1
absolute positioned item.

Thanks so much!
:)

Im sure im not the only person that you helped with that!

Thanks!

-----------------------------
Chris Stratford
[EMAIL PROTECTED]
www.neester.com
-----------------------------


-----Original Message-----
From: Robert Moser [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 30, 2004 6:16 PM
To: [EMAIL PROTECTED]
Subject: Re: [WSG] What Causes "Selection" Problems In IE.


Chris Stratford blurted out:

 > Awwww really!
 > Thats 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/
***************************************************** 



*****************************************************
The discussion list for http://webstandardsgroup.org/
***************************************************** 

Reply via email to