Alfresco calendar Add Event text overlaps (z-index is wrong)
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2015 04:01 AM
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?
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?
Labels:
- Labels:
-
Archive
Untitled_4.png
230 KB
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2015 01:24 AM
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;
}
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;
}
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2015 04:41 AM
Your second solution/hack worked! Thanks very much!
