I'm not actually using JavaScript yet due to an issue loading the standard scripts (they all return a 404 error).
The site is not up on a server yet and won't be until the Spring of 2013.
I could show the _Layout.cshtml file being used but there really isn't anything special there.
The content is showing up in the middle of the display so there is nothing big enough to totally hide the menu on this BackOffice (read: login required) page.
eric2820
Contributor
2777 Points
1161 Posts
My Menu's disappered but show up in Fiddler 2
Dec 28, 2012 12:08 AM|LINK
I have a menu on the left side of the browser that disappered yesterday.
The thing is I know that it is being generated because the breakpoint I set is still there and the menu shows up in Fiddler 2 in the Web View.
The .css for the menu is:
DIV.floating-menu
{
background: #D8D8D8;
float: left;
color: black;
padding: 10px 10px 10px 10px;
position: fixed;
text-align: center;
width: 175px;
z-index: 100;
}
DIV.floating-menu2
{
background: #D8D8D8;
float: left;
color: black;
padding: 10px 10px 10px 10px;
position: fixed;
text-align: center;
width: 175px;
z-index: 100;
top: 900px;
}
To my eye, I see nothing that would cause the menu to vanish. Maybe you will see something that I missed.
http://www.my-msi.net/Admin
blog
If a post helps you, please mark it as Ansered, thank-you.
CPrakash82
All-Star
18270 Points
2839 Posts
Re: My Menu's disappered but show up in Fiddler 2
Dec 28, 2012 01:03 AM|LINK
Do you see it in view source of the page?
eric2820
Contributor
2777 Points
1161 Posts
Re: My Menu's disappered but show up in Fiddler 2
Dec 28, 2012 01:51 PM|LINK
Yes I do see the menu's in the view source of the page.
So again I ask: Why don't I see them on the web page?
http://www.my-msi.net/Admin
blog
If a post helps you, please mark it as Ansered, thank-you.
ignatandrei
All-Star
134913 Points
21619 Posts
Moderator
MVP
Re: My Menu's disappered but show up in Fiddler 2
Dec 28, 2012 02:11 PM|LINK
There can be multiple causes: javascript hide the menu, an floating div ... and so on. Can we also see the page somewhere?
eric2820
Contributor
2777 Points
1161 Posts
Re: My Menu's disappered but show up in Fiddler 2
Dec 28, 2012 02:30 PM|LINK
I'm not actually using JavaScript yet due to an issue loading the standard scripts (they all return a 404 error).
The site is not up on a server yet and won't be until the Spring of 2013.
I could show the _Layout.cshtml file being used but there really isn't anything special there.
The content is showing up in the middle of the display so there is nothing big enough to totally hide the menu on this BackOffice (read: login required) page.
http://www.my-msi.net/Admin
blog
If a post helps you, please mark it as Ansered, thank-you.
raju dasa
Star
14392 Points
2447 Posts
Re: My Menu's disappered but show up in Fiddler 2
Dec 28, 2012 05:31 PM|LINK
Hi,
Clear browser cache, then
Try using the Developer Tools (F12) in IE
or Firebug plugin for Firefox. select element you want to see on view.
or use different z-indexes and decrease top css rule.
rajudasa.blogspot.com || blog@opera
eric2820
Contributor
2777 Points
1161 Posts
Re: My Menu's disappered but show up in Fiddler 2
Dec 28, 2012 07:21 PM|LINK
Turns out the IE's compatibility mode somehow got turned on, when I disableed it, the menus appeared again.
Which of course begs the following question: Why would comapatibility mode mess up the display of menus?
http://www.my-msi.net/Admin
blog
If a post helps you, please mark it as Ansered, thank-you.
raju dasa
Star
14392 Points
2447 Posts
Re: My Menu's disappered but show up in Fiddler 2
Dec 29, 2012 06:44 AM|LINK
Hi,
might be float css rule is buggy in older IE.
check these sites:
http://stackoverflow.com/questions/187279/strange-float-behaviour-in-ie7
http://stackoverflow.com/questions/2026783/internet-explorer-7-css-html-float-bug
rajudasa.blogspot.com || blog@opera
eric2820
Contributor
2777 Points
1161 Posts
Re: My Menu's disappered but show up in Fiddler 2
Dec 29, 2012 01:20 PM|LINK
That may be in fact true, but I'm not using an older IE. I'm using IE 9!
http://www.my-msi.net/Admin
blog
If a post helps you, please mark it as Ansered, thank-you.