cancel
Showing results for 
Search instead for 
Did you mean: 

Alfresco calendar Add Event text overlaps (z-index is wrong)

magabriel
Champ in-the-making
Champ in-the-making
Please see the attached image.

I have a problem with the Alfresco calendar add event window as the text is overlapping the window. I found that the problem was the z-index was too low and editing it via the browser console fixed it. Now, what files do I need to change so I can make this permanent?

The calendar's URL is <my ip>:8080/share/page/site/melvillenet/calendar. Can anyone help?
2 REPLIES 2

manjrak
Champ on-the-rise
Champ on-the-rise
Please search for a class "yui-dailog", in css files, and update the z-index.

or (this solution is not recommended , it is kind of hack)you can findout the currently using skin. cahnge the z-index property for "yui-dailog" class with !important.

For eg :

.yui-dailog{
z-index:3!important;
}

magabriel
Champ in-the-making
Champ in-the-making
Your second solution/hack worked! Thanks very much!