I did not used frames because I not preffer this way. I solve this problem usign pure CSS. That's how I wanted to.
- #leftMenu {
-
width: 190px;
-
cursor:default;
-
overflow:hidden;
-
float:left;
-
}
-
#right {
-
margin-left:190px;
-
}
-
.mysqlAddTableMenu {
-
display:none;
-
width:100%;
-
float:left;
-
overflow:auto;
-
}
Where #leftMenu is for naviagation fixed width left, right is div that contain any other stuff that will de displayed on the screen, and .mysqlAddTableMenu(is nested in right) is showing scrollbars when it dosent fit to screen.
I figure that when floating of .mysqlAddTableMenu is not set that layout doesn't work in IE.
The style that I listed above is only small part of page style but it concern the problem.
Thanks for any help on your side.