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 <nav> *outside* 
<container1> that only shows up in IE6--<nav1> is for everyone 
else.  Everything works like a charm except for the "Back" problem.

Any hard-won wisdom on this one?

Thanks.

--Bob R.

***********************************************

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml";>
<head>
<style>
. . .
#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>
<body>
        <div id="nav">
        list
        list
        . . .
        </div>
        <div id="container1">
        image
                <div id="container">
                        <div id="nav1">
                        list
                        list
                        . . .
                        </div>
                        <div id="content">
                        . . .
                        Lots of good stuff (6MB worth)
                        . . .
                        </div>
                </div>
        </div>
</body>

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

Reply via email to