Re: [css-d] IE6 "Back" function fubar?

2007-10-02 Thread Gunlaug Sørtun
Bob Rosenberg wrote:

> [http://users.rcn.com/rtberg2/hp_ctr.html]  But now I find that the 
> "Back" function doesn't work in IE6!  Does anyone have any insight 
> into this sort of problem?

I've seen plenty of problems with badly constructed CSS based 
workarounds for 'position: fixed' in IE6, but, as mentioned below: the 
source code in your page is of much too low quality to bother debugging 
your construction.

> It's the xhtml1-transitional DTD.

Well, it sure is *not* xhtml 1.0 Transitional, no matter what the DTD 
says...





...and it looks like Tidy gave up on it.

> Any hard-won wisdom on this one?

Well, I normally wouldn't run IE6 in standard mode with such a 
construction, but I haven't managed to break the [back] button no matter 
how I run my CSS based version...



...but I know many can't get it to work.

I prefer the alternative 'position: fixed' workaround with an 
IE-expression...



...and haven't experienced any real problems with that one.


Another detail: I can't really see the point in having duplicate menus, 
as the proper 'position: fixed' doesn't rely on where the element is in 
the source code. So why not use the "IE6 menu" in all browsers?

regards
Georg
-- 
http://www.gunlaug.no
__
css-discuss [EMAIL PROTECTED]
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/


[css-d] IE6 "Back" function fubar?

2007-10-02 Thread Bob Rosenberg
Thanks to some great advice from list members, I have a (large) file 
up and running with a fixed menu that *stays* fixed in IE6. 
[http://users.rcn.com/rtberg2/hp_ctr.html]  But now I find that the 
"Back" function doesn't work in IE6!  Does anyone have any insight 
into this sort of problem?  It happens on another file that uses the 
same construction, which I've sketched below. The solution I arrived 
at for the fixed menu is to have a duplicate menu  *outside* 
 that only shows up in IE6-- is for everyone 
else.  Everything works like a charm except for the "Back" problem.

It's the xhtml1-transitional DTD. (I've had to replace the angle 
brackets below with square brackets to keep Eudora happy.)

Any hard-won wisdom on this one?

Thanks.

--Bob R.

***

[style type="text/css"]
. . .
#nav {display: none;}
#nav1 {font-size: 80%; width: 25%; position: fixed; left: 2%; top: 85px;}
. . .
[/style]

[!--[if IE 6]]
[style type="text/css"]
body {height: 100%; overflow: hidden; padding: 0px; margin: 0px; }
#container1 {height: 100%; overflow: auto; position: relative; z-index: 1;}
#nav {display: block; font-size: 80%; width: 20%; position: absolute; 
left: 5%; top: 80px; z-index: 2;}
#nav1 {display: none;}
[/style]
[![endif]--]
[/head]
[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/


[css-d] IE6 "Back" function fubar?

2007-10-02 Thread Bob Rosenberg
Thanks to some great advice from list members, I have a (large) file 
up and running with a fixed menu that *stays* fixed in IE6. 
[http://users.rcn.com/rtberg2/hp_ctr.html]  But now I find that the 
"Back" function doesn't work in IE6!  Does anyone have any insight 
into this sort of problem?  It happens on another file that uses the 
same construction, which I've sketched below. The solution I arrived 
at for the fixed menu is to have a duplicate menu  *outside* 
 that only shows up in IE6-- is for everyone 
else.  Everything works like a charm except for the "Back" problem.

Any hard-won wisdom on this one?

Thanks.

--Bob R.

***

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
http://www.w3.org/1999/xhtml";>


. . .
#nav {display: none;}
#nav1 {font-size: 80%; width: 25%; position: fixed; left: 2%; top: 85px;}
. . .





list
list
. . .


image


list
list
. . .


. . .
Lots of good stuff (6MB worth)
. . .





__
css-discuss [EMAIL PROTECTED]
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/