Re: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread Lachlan Hunt
Germ wrote: Ok now its my turn to grib about Internet Explorer ... PS: Is there an online petition to ban IE?? This list is not for IE bashing. We're all aware of the fact that IE has some serious limitations and many of us have to deal with them everyday. However, venting your frustration

RE: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread Kepler Gelotte
ONE: I have a min width but it doesnt work in explorer so the right flash file drops down when its minimised. Since IE 6.0 doesn't support min-width, you need to use (a CSS invalid) expression: min-width: 800px; width: width:expression((document.documentElement.offsetWidth

Re: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread pdr Lists
On 13-Sep-2006, at 15:37 , Germ wrote: PS: Is there an online petition to ban IE?? Kind of ... I place a link to this site on every page I build ... just to try and get some awareness happening in the general community ... http://browsehappy.com/ Hopefully things will be much

Re: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread Hrvoje Markovic
Is there somewhere a list of what/how IE interperates html/css differently from, let's say Firefox? And how to make a page work in both? _ FREE pop-up blocking with the new MSN Toolbar - get it now!

Re: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread Germ
Germ wrote: Ok now its my turn to grib about Internet Explorer ... PS: Is there an online petition to ban IE??This list is not for IE bashing.We're all aware of the fact that IEhas some serious limitations and many of us have to deal with themeveryday.However, venting your frustration publicly

RE: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread Chris Williams
Sure. http://css-discuss.incutio.com/ -Original Message- From: Hrvoje Markovic Subject: Re: [WSG] I Hate Internet Explorer Pt 2 Is there somewhere a list of what/how IE interperates html/css differently from, let's say Firefox? And how to make a page work in both

Re: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread Germ
So dumb question...does that go in the style sheet? I ask because I added it and it didnt work. also the code below goes on one line right? Since IE 6.0 doesn't support min-width, you need to use (a CSS invalid)_expression_:min-width: 800px;width:

Re: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread Lachlan Hunt
Hrvoje Markovic wrote: Is there somewhere a list of what/how IE interperates html/css differently from, let's say Firefox? And how to make a page work in both? http://positioniseverything.net/explorer.html -- Lachlan Hunt http://lachy.id.au/

RE: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread Kepler Gelotte
So dumb question... does that go in the style sheet? I ask because I added it and it didnt work. also the code below goes on one line right?   Sorry I had a typo. It should be: #container { min-width: 800px; width:expression((document.documentElement.offsetWidth 820)? 800px:

Re: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread Germ
hey thanks alot for thatI looked at the http://css-discuss.incutio.com/?page=MinWidth page but the code you gave me is definatly better and easier to add into the style sheet Thanks alot to peoples help and comments and the links to the other pages about the quirks of IE etcOn 9/13/06, Kepler

Re: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread Matthew Pennell
On 9/13/06, Kepler Gelotte [EMAIL PROTECTED] wrote: Since IE 6.0 doesn't support min-width, you need to use (a CSS invalid) expression: You can also fake min-width without using invalid CSS: http://www.cssplay.co.uk/boxes/minwidth.html http://www.cssplay.co.uk/boxes/width.html

Re: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread Tom Livingston
On 9/13/06 2:25 AM, Kepler Gelotte [EMAIL PROTECTED] wrote: Since IE 6.0 doesn't support min-width, you need to use (a CSS invalid) expression: min-width: 800px; width: width:expression((document.documentElement.offsetWidth 820)? 800px: auto ); Couldn't you just use 'height' ? I

Re: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread Tony Crockford
Tom Livingston wrote: On 9/13/06 2:25 AM, Kepler Gelotte [EMAIL PROTECTED] wrote: Since IE 6.0 doesn't support min-width, you need to use (a CSS invalid) expression: min-width: 800px; width: width:expression((document.documentElement.offsetWidth 820)? 800px: auto ); Couldn't you just use

Re: [WSG] I Hate Internet Explorer Pt 2

2006-09-13 Thread Tom Livingston
On 9/13/06 1:17 PM, Tony Crockford [EMAIL PROTECTED] wrote: well you could, but setting height isn't going to help with width is it? ;) ...morecoffeecan'tfindmug. DOH! -- Tom Livingston | Senior Multimedia Artist | Media Logic | ph: 518.456.3015x231 | fx:

[WSG] I Hate Internet Explorer Pt 2

2006-09-12 Thread Germ
Ok now its my turn to grib about Internet ExplorerIm redesigning my webpage (http://www.jp2designs.com) and i have three problems with Internet explorer that work fine in mozilla firefox. the style sheet location is at: http://www.jp2designs.com/Style.cssONE: I have a min width but it doesnt work