Did anyone successfully design a fixed menu style for CMSMS that works with IE-6? A no-scroll menu would be great for long content pages. The property " position: fixed" should do the trick for firefox, konqueror and friends. Yet, the notorious IE-6 chooses to ignore this snippet and will scroll the menu anyways. On http://lilalaser.de you can see my effort to morph the default theme into a fixed menu design. (Go to Produkte-Diodenlaser for a page with scrollbar.)
My preferred resource of information on CSS stuff, http://selfhtml.org, says, IE-6 can be tricked into the desired behaviour if the header contains this code:
Code: Select all
<!--[if lt IE 7]><style type="text/css">
@media screen {
html, body {
height: 100%; overflow-y: hidden;
}
#container {
height: 100%; width: 100%; overflow: auto;
}
#content {
position: static;
}
}
</style><![endif]-->
Is there anything I can do about it? Maybe a way to make smarty leave this code snippet alone?Fatal error: Smarty error: [in template:12 line 26]: syntax error: unrecognized tag: html, body { height: 100%; overflow-y: hidden; (Smarty_Compiler.class.php, line 436) in /var/www/vhosts/lilalaser.de/httpdocs/lila/lib/smarty/Smarty.class.php on line 1095
------