[css-d] Dissapearing elements in IE6

2007-07-24 Thread Erik Gyepes
Hello,

URL: http://erikgyepes.com/problem1/

The page looks okay in Firefox and Oper, but when I look on it with IE6 
then the "US states" title dissapears. Also with the "All makes" title 
which is on the bottom of the page.

Does anyone know how to fix this?

Erik
__
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/


Re: [css-d] Dissapearing elements in IE6

2007-07-24 Thread Bruno Fassino
Erik Gyepes wrote:
>
> URL: http://erikgyepes.com/problem1/
>
> The page looks okay in Firefox and Oper, but when I look on
> it with IE6 then the "US states" title dissapears. Also with
> the "All makes" title which is on the bottom of the page.

Absolutely positioned boxes "near" to floats may disappear in IE, in various
circumstances. Your case looks like one of the those mentioned here [1], and
it seems to be fixed giving margin-right:-3px to the last float of any group
following the missing box. I mean:
Add a class to the "ul" going from "South Dakota" to "Wyoming" (and to the
one going from "Rolls Royce" to "Volvo") and give margin-right:-3px to this
class.
(There are surely other fixes, but they require more changes to the markup.)

Hth,
Bruno


[1] http://www.brunildo.org/test/IE_raf3.html

--
Bruno Fassino http://www.brunildo.org/test

__
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/


Re: [css-d] Dissapearing elements in IE6

2007-07-25 Thread Erik Gyepes
Hi Bruno,

I don't understand it, but it really works. Do you have any references 
to that "bug" or something so I can understand that? What other changes 
you think? I can change the mark up.

Erik

Bruno Fassino wrote:
> Erik Gyepes wrote:
>   
>> URL: http://erikgyepes.com/problem1/
>>
>> The page looks okay in Firefox and Oper, but when I look on
>> it with IE6 then the "US states" title dissapears. Also with
>> the "All makes" title which is on the bottom of the page.
>> 
>
> Absolutely positioned boxes "near" to floats may disappear in IE, in various
> circumstances. Your case looks like one of the those mentioned here [1], and
> it seems to be fixed giving margin-right:-3px to the last float of any group
> following the missing box. I mean:
> Add a class to the "ul" going from "South Dakota" to "Wyoming" (and to the
> one going from "Rolls Royce" to "Volvo") and give margin-right:-3px to this
> class.
> (There are surely other fixes, but they require more changes to the markup.)
>
> Hth,
> Bruno
>
>
> [1] http://www.brunildo.org/test/IE_raf3.html
>
> --
> Bruno Fassino http://www.brunildo.org/test
>
> __
> 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/
>   

__
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/


Re: [css-d] Dissapearing elements in IE6

2007-07-25 Thread Bruno Fassino
On 7/25/07, Erik Gyepes wrote:

> I don't understand it, but it really works. Do you have any references
> to that "bug" or something so I can understand that?

I don't have any other reference than
http://www.brunildo.org/test/IE_raf3.html, which is an attempt to
shortly sum up these type of problems and possible solutions.
As for "understanding"  I really have no idea :-), it's a bug, or a
combination of different bugs, and it's also pretty elusive...

> What other changes you think? I can change the mark up.

For example the addition of an empty element () between the
AP box and the floats also fixes the problem. This is not better than
the margin-right workaround, but I mentioned it because in same cases
it seems to be the only stable solution.

Bruno
-- 
Bruno Fassino http://www.brunildo.org/test
__
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/