RE: [WSG] IE hasLayout - the long and short of it

2011-01-06 Thread Birendra
, 2011 11:52 AM To: Web Group Subject: [WSG] IE hasLayout - the long and short of it Here's my attempt to put a gradient behind some headings. To get Microsoft's gradient filter to work, I must give the headers layout. This causes the headings to expand in width in IE6, and to shrink in IE7: http

Re: [WSG] IE hasLayout - the long and short of it

2011-01-06 Thread David Hucklesby
On 1/5/11 11:12 PM, G.Sørtun wrote: On 06.01.2011 07:21, David Hucklesby wrote: Here's my attempt to put a gradient behind some headings. To get Microsoft's gradient filter to work, I must give the headers layout. This causes the headings to expand in width in IE6, and to shrink in IE7:

RE: [WSG] IE hasLayout - the long and short of it

2011-01-06 Thread Thierry Koblentz
Hi David, It appears to be the existence of hasLayout on the .vcalendar that causes the problem (due to it being floated...) I don't think this is the issue per se. Imho, the problem is that this float is width-less. Give it with a width and things should work the way you want. -- Regards,

Re: [WSG] IE hasLayout - the long and short of it

2011-01-06 Thread David Hucklesby
On 1/6/11 9:43 AM, Thierry Koblentz wrote: Hi David, It appears to be the existence of hasLayout on the .vcalendar that causes the problem (due to it being floated...) I don't think this is the issue per se. Imho, the problem is that this float is width-less. Give it with a width and things

Re: [WSG] IE hasLayout - the long and short of it

2011-01-06 Thread Jon Reece
Hi David, Removing the min-height from the following rule has an effect in IE7, didn't test in IE6: .ie6 .vcalendar h3, .ie7 .vcalendar h3 { filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ff', EndColorStr='#ee'); /*min-height: 0;*/ } Min-height triggers

Re: [WSG] IE hasLayout - the long and short of it

2011-01-06 Thread Jon Reece
Hi David, Sorry, I was in a hurry and didn't read all that I should have, also didn't notice that removing hasLayout also removed the filter. Maybe you want to try PIE (css3pie.com)? - Jon On Thu, Jan 6, 2011 at 7:50 PM, Jon Reece jon.re...@gmail.com wrote: Hi David, Removing the

Re: [WSG] IE hasLayout - the long and short of it

2011-01-06 Thread David Hucklesby
Re: http://thewebwiz.net/temp/has-layout-long-and-short/ On 1/6/11 5:05 PM, Jon Reece wrote: Hi David, Sorry, I was in a hurry and didn't read all that I should have, also didn't notice that removing hasLayout also removed the filter. Maybe you want to try PIE (css3pie.com)? - Jon That had

[WSG] IE hasLayout - the long and short of it

2011-01-05 Thread David Hucklesby
Here's my attempt to put a gradient behind some headings. To get Microsoft's gradient filter to work, I must give the headers layout. This causes the headings to expand in width in IE6, and to shrink in IE7: http://thewebwiz.net/temp/has-layout-long-and-short/ Any solution, even a scripting

Re: [WSG] IE hasLayout - the long and short of it

2011-01-05 Thread Al Sparber
On 1/6/2011 1:21 AM, David Hucklesby wrote: Here's my attempt to put a gradient behind some headings. To get Microsoft's gradient filter to work, I must give the headers layout. This causes the headings to expand in width in IE6, and to shrink in IE7:

Re: [WSG] IE hasLayout - the long and short of it

2011-01-05 Thread G.Sørtun
On 06.01.2011 07:21, David Hucklesby wrote: Here's my attempt to put a gradient behind some headings. To get Microsoft's gradient filter to work, I must give the headers layout. This causes the headings to expand in width in IE6, and to shrink in IE7: