> On Behalf Of Erik Gyepes
> Thanks for your advice, it really works, but I still don't know how to
> solve it in IE6. As you know IE6 doesn't support min-width, so I tried
> this expression: "width :expression(document.body.clientWidth > 780?
> "780px": "auto" );" for the body, but it didn't worked.
> 
> Do you have any ideas?

min-width or max-width? What you have above looks like a max-width.
Try this for min-width:
width: expression(documentElement.clientWidth < 780 ? "780px" : "auto" )

---
Regards,
Thierry | http://www.tjkdesign.com


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

Reply via email to