| Previous topic :: Next topic |
| Author |
Message |
brian
Joined: 02 Jan 2006
Posts: 29
|
| Posted: Sat Sep 23, 2006 4:22 pm Post subject: 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.
Code: #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. |
|
| Back to top |
|
philip
Joined: 25 Aug 2004
Posts: 297
|
| Posted: Mon Sep 25, 2006 1:12 pm Post subject: Re: AllMenu not on Top |
|
|
Hi,
Thanks for the fix, we'll integrate this in our v5 patch 1 release.
Philip |
|
| Back to top |
|
dartagnanlaf
Joined: 21 Sep 2006
Posts: 12
|
| Posted: Mon Sep 25, 2006 1:26 pm Post subject: Re: AllMenu not on Top |
|
|
| Thanks for the info. I hadn't noticed that bug before. Took about 2 min to fix it with your post. :) |
|
| Back to top |
|
| |