Re: WORK-A-ROUND: [WSG] Max / min-width issue IE6

2005-08-29 Thread David Laakso
Jacobus van Niekerk wrote: Just did a bit more testing and found this css to do the job for me! I think this is a "ok" solution to use, since the css code is only for IE. * html #cont { /* IE Dynamic Expression to set the width */ width:expression(document.body.clientWidth <= 1024 ? "800px"

WORK-A-ROUND: [WSG] Max / min-width issue IE6

2005-08-29 Thread Jacobus van Niekerk
Just did a bit more testing and found this css to do the job for me! I think this is a "ok" solution to use, since the css code is only for IE. * html #cont { /* IE Dynamic Expression to set the width */ width:expression(document.body.clientWidth <= 1024 ? "800px" : "1024px" ); border: 1px