I 'm just launching site: http://tinyurl.com/6buet4 (this link will redirect to my site) please check it and fix it for me. this site has the following general design ========================= header red bar blue menu bar >> problem'z here body footer ========================= blue menu bar contains buttons and drop down menu up to 2 levels Problem: I've used CSS hack (server side includes) in IE the page sometime doesn't displays the green menu bar and it contains drop down menus. IT works in Opera and Mozilla Firefox but it was designed on IE it works and some time fails in IE too when the file is opened through my local disc. Please I don't want to add javascript for drop-down menu CSS is working in other browsers and some times in IE too. Please help me.
As far as I can see, the css is fine (but I just glanced over it). The fact that it sometimes works is most likely due to the javascript on the page. I'm not quite sure what you're trying to do with it since the css should take care of it. I suggest taking out the javascript. If you must keep it, there's a missing semicolon when you declare the listexpander function, "var listClass = "listexpander"[;]. IE6 is strict when it comes to missing and extra punctuations. I think you got the css from the same place I did. I edited the css a bit to try to make it simpler: http://www.csswoes.com/2008/04/21/creating-drop-down-menus-with-only-css/ You should try redoing the css if it persists to not work. A few suggestions also. Don't fix the footer at the bottom since it runs into the content above sometimes. Rather, absolutely position it to the bottom. Visit my tutorial on how to do this at: http://www.csswoes.com/2008/05/10/keeping-the-footer-at-the-bottom-of-the-page/ It even maintains a certain height that the footer can't go past if the window is resized too small. Also, don't float the side menu to the right. Since your content has a static width, floating to the right isn't needed. I suggest centering the whole layout and giving it a set width instead of letting it expand with the browser window. I'll post more if I find what else could be causing your bar to disappear.