Re: [css-d] Fixes needed for IE 6.0

2010-05-29 Thread David Laakso
Kim Brooks Wei wrote:
> Hi People,
>
> This site http://bit.ly/uVTaf works well in all the browsers I need 
> (Safari , Firefox and IE 7.0+) except IE 6.0. Are there fixes I can 
> install to make it work in 6.0 too?
>
> Another thing - there's an extra space in the page navigation that I 
> can't get ride of. You can see the space at the bottom of the menu's 
> sub menu ul when the submenus are visible (in service and portfolio).
>
> Thanks,
> Kimi
>
>   




Our dear friend in Redmond does not support position:fixed; nor does it 
support min/max width or height.
The simplest solution is to feed IE/6 position absolute rather than 
fixed; and feed IE/6 a fixed width that does not draw a scroll bar at 
1024 [see fixes below].
However, if you want to explore "IE expressions" and javascript  to 
support IE/6, I'll leave that you and others...



* html body {
width: 960px;
}
   
* html img#background {
position: absolute;
left: 10px;
}
* html div#page {margin: 36px 0 0 310px;}
* html div#homewrap { border: 1px solid red;
width: 650px;
margin: 36px 0 0 0;
}

reference: on having layout

   

I do not know what you mean about the menu.

Best,
~d

PS Since you never seem to reply other when something is wrong, we never 
really know if what is sent to you works, whether you have consulted 
another list, found a better fix on your own, or consulted a crystal 
ball... :-)




-- 
desktop
http://chelseacreekstudio.com/

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Fixes needed for IE 6.0

2010-05-29 Thread MEM
2010/5/29 Kim Brooks Wei :
> Hi People,

hi. Kimi


>
> This site http://bit.ly/uVTaf works well in all the browsers I need
> (Safari , Firefox and IE 7.0+) except IE 6.0. Are there fixes I can
> install to make it work in 6.0 too?


On your homewrap div, have you tried to contain the floats with:


div#homewrap
{
 overflow:hidden;
... all your other rules here...
}

That, with a width defined (that you already have: 45em) could solve
some of your IE6 issues I believe.

You may have other containers that are not containing the floats. If
so, I believe you can repeat the steps above.


> Another thing - there's an extra space in the page navigation that I
> can't get ride of. You can see the space at the bottom of the menu's
> sub menu ul when the submenus are visible (in service and portfolio).

, Tested on (last) FF, and IETester IE6, IE7, IE8, I was unable to see
that extra bottom space on the submenu



> Thanks,
> Kimi

K. Regards,
Márcio
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/