Re: [WSG] Disappearing positioned footer in IE7 - works in IE6

2007-04-27 Thread al morris
Sorry, I should have mentioned it only works in Strict mode. This is an excellent example of why not to use hacks, but use your design skills. Agreed, it's a mess, but Cole asked for a hack version. Conditional comments is the best method. On 4/25/07, Stuart Foulstone <[EMAIL PROTECTED]> wrote:

Re: [WSG] Disappearing positioned footer in IE7 - works in IE6

2007-04-24 Thread Stuart Foulstone
This is an excellent example of why not to use hacks, but use your design skills. Stuart On Tue, April 24, 2007 1:07 pm, al morris wrote: > Hi, > > IE 7 now supports the *html hack, so the 'position: relative' style is > being > applied. You can still add hacks for IE 6 and/or IE 7 but it's tric

Re: [WSG] Disappearing positioned footer in IE7 - works in IE6

2007-04-24 Thread Alex Robinson
IE7 doesn't support * html: Except that very page says "[strict mode only fix]". When in quirks mode you get the worst of both worlds since IE7 does not behave the same as IE6 even though it's picking up the same declarations. I'd wag

Re: [WSG] Disappearing positioned footer in IE7 - works in IE6

2007-04-24 Thread Nick Fitzsimons
On 24 Apr 2007, at 13:07:42, al morris wrote: IE 7 now supports the *html hack, so the 'position: relative' style is being applied. IE7 doesn't support * html: Regards, Nick. -- Nick Fitzsimons http://www.nickfitz.co.uk/ **

Re: [WSG] Disappearing positioned footer in IE7 - works in IE6

2007-04-24 Thread al morris
Hi, IE 7 now supports the *html hack, so the 'position: relative' style is being applied. You can still add hacks for IE 6 and/or IE 7 but it's tricky.. If you need to send something to IE6 and nothing else: use the underscore attribute hack (_border:1px solid pink;) If you want to send somethi

[WSG] Disappearing positioned footer in IE7 - works in IE6

2007-04-23 Thread Cole Kuryakin
Hello All - I was having an absolutely-positioned footer problem in IE6 which was fixed with the following: #bottom_nav {/*Compliant Browsers*/ position: absolute; bottom: -75px; right: 25px; text-align: right;