Re: [WSG] Disappearing conent in middle column

2005-09-19 Thread Gunlaug Sørtun

Webmaster wrote:

Hi Andreas,

That's the bug alright. If only I'd thought to search Google for 
'peekaboo' and not 'CSS content disappears' or similar. ;)


Gunlaug's fix certainly did the trick. Thanks, Gunlaug!

It appears the Holly Hack might also work ...


FYI: The fix I gave you is similar to the 'Holly Hack' -- it's just an
improved version based on further studies. Guess that's why the
'hasLayout'-article I linked to[1] is for free :-) and includes a lot
more stuff around that bug and how to "kill" or use it.

You may of course also read about the buggy basics on msdn[2] if you like...

Georg

[1]http://www.satzansatz.de/cssd/onhavinglayout.html
[2]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/IETechCol/cols/dnexpie/expie20050831.asp
--
http://www.gunlaug.no
**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
**



RE: [WSG] Disappearing conent in middle column

2005-09-19 Thread Webmaster
Hi Andreas,

That's the bug alright. If only I'd thought to search Google for 'peekaboo'
and not 'CSS content disappears' or similar. ;)

Gunlaug's fix certainly did the trick. Thanks, Gunlaug!

It appears the Holly Hack might also work but would oyu believe the original
article for this on PositionIsEverytyhing (
www.positioniseverything.net/articles/hollyhack.html )has now been moved to
http://www.communitymx.com/abstract.cfm?cid=47F29 and requires payment?!

Thanks a lot for your quick responses.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Andreas Boehmer [Addictive Media]
Sent: Tuesday, 20 September 2005 2:22 PM
To: wsg@webstandardsgroup.org
Subject: RE: [WSG] Disappearing conent in middle column

> -Original Message-
> From: Webmaster [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, 20 September 2005 2:03 PM
> To: wsg@webstandardsgroup.org
> Subject: [WSG] Disappearing conent in middle column
> 
> The content in the centre column (i.e. the main content) of my site 
> template disappears on page load. It reappears as soon as you rollover 
> any link, or drag over the body text itself.
> 

Did you check if it is the peekaboo bug?

http://www.positioniseverything.net/explorer/peekaboo.html


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

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
**

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

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
**



RE: [WSG] Disappearing conent in middle column

2005-09-19 Thread Webmaster



Hi Christian. Yes, I have.
 
The clearer class looks like this.
 
 .clearer {  clear: 
both;  line-height: 0; height: 0;  margin: 0px; 
padding: 0px;  background: 
transparent;  }
 
For those not seeing the problem it is duplicated ONLY 
under these circumstamces.
 
1. The centre colums content height is less than that 
of the right column AND you click in the Address bar after page load and 
hit RETURN.
2. On an subsequent visit using the browser's arrow 
keys.


From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Christian 
MontoyaSent: Tuesday, 20 September 2005 2:14 PMTo: 
wsg@webstandardsgroup.orgSubject: Re: [WSG] Disappearing conent in 
middle column
Are you applying "clear:both;" to these divs?
On 9/20/05, Webmaster 
<[EMAIL PROTECTED]> 
wrote: 
Hi 
  all,Another bizarre IE bug. I've searched and searched and can find 
  nothing suitable to fix this.The content in the centre column 
  (i.e. the main content) of my site templatedisappears on page load. It 
  reappears as soon as you rollover any link, ordrag over the body text 
  itself. This is a continuation of the same problem I had earlier which 
  someonerecommended would be solved by using a  as a clearing 
  element insteadof a .Converting DIVs to BRs only 
  resulted in more arcane behaviour. In fact, clearing floats in the usual 
  fashion generally results in problems.The problem only seems to occur 
  when the content in the right column exceedsthe height of the centre 
  column.For those interested the live example is here: http://d81314.i50.quadrahosting.com.au/layout_test.htmAny 
  and all suggestions/solutions much 
  appreciated.Paul** 
  The discussion list for  http://webstandardsgroup.org/See 
  http://webstandardsgroup.org/mail/guidelines.cfm 
  for some hints on posting to the list & getting 
  help**


RE: [WSG] Disappearing conent in middle column

2005-09-19 Thread Andreas Boehmer [Addictive Media]
> -Original Message-
> From: Webmaster [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, 20 September 2005 2:03 PM
> To: wsg@webstandardsgroup.org
> Subject: [WSG] Disappearing conent in middle column
> 
> The content in the centre column (i.e. the main content) of 
> my site template
> disappears on page load. It reappears as soon as you rollover 
> any link, or
> drag over the body text itself.
> 

Did you check if it is the peekaboo bug?

http://www.positioniseverything.net/explorer/peekaboo.html


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

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
**



Re: [WSG] Disappearing conent in middle column

2005-09-19 Thread Gunlaug Sørtun

Webmaster wrote:


The content in the centre column (i.e. the main content) of my site template
disappears on page load. It reappears as soon as you rollover any link, or
drag over the body text itself.



http://d81314.i50.quadrahosting.com.au/layout_test.htm


Add, at the very bottom of your stylesheet:

@media screen {
* html #middle {
height: 0;
}
}

...to stabilize it.

More info on 

Georg
--
http://www.gunlaug.no
**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
**



Re: [WSG] Disappearing conent in middle column

2005-09-19 Thread Christian Montoya
Are you applying "clear:both;" to these divs?On 9/20/05, Webmaster <[EMAIL PROTECTED]> wrote:
Hi all,Another bizarre IE bug. I've searched and searched and can find nothing
suitable to fix this.The content in the centre column (i.e. the main content) of my site templatedisappears on page load. It reappears as soon as you rollover any link, ordrag over the body text itself.
This is a continuation of the same problem I had earlier which someonerecommended would be solved by using a  as a clearing element insteadof a .Converting DIVs to BRs only resulted in more arcane behaviour. In fact,
clearing floats in the usual fashion generally results in problems.The problem only seems to occur when the content in the right column exceedsthe height of the centre column.For those interested the live example is here:
http://d81314.i50.quadrahosting.com.au/layout_test.htmAny and all suggestions/solutions much appreciated.Paul**
The discussion list for  http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help**


[WSG] Disappearing conent in middle column

2005-09-19 Thread Webmaster
Hi all,

Another bizarre IE bug. I've searched and searched and can find nothing
suitable to fix this.

The content in the centre column (i.e. the main content) of my site template
disappears on page load. It reappears as soon as you rollover any link, or
drag over the body text itself.

This is a continuation of the same problem I had earlier which someone
recommended would be solved by using a  as a clearing element instead
of a .

Converting DIVs to BRs only resulted in more arcane behaviour. In fact,
clearing floats in the usual fashion generally results in problems.

The problem only seems to occur when the content in the right column exceeds
the height of the centre column.

For those interested the live example is here:

http://d81314.i50.quadrahosting.com.au/layout_test.htm

Any and all suggestions/solutions much appreciated.

Paul

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

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
**