editable region not working: z-index issue
Permalink
First time here, and first time user of c5. Been tinkering with it during the weekend.
Not sure if this is a bug or the developers might have missed this.. The edit feature does not play well with designs that uses absolute positioning.
div#ccm-highlighter has a value of 5. Not much room for other z-indexes for possible design elements. To keep the editable region to remain on top, why not update the core css to have 4 digit z-indexes? Right now, I'm adding div#ccm-highlighter with zindex of 999 (with !important) in my stylesheet just to get by.
My two cents..
Not sure if this is a bug or the developers might have missed this.. The edit feature does not play well with designs that uses absolute positioning.
div#ccm-highlighter has a value of 5. Not much room for other z-indexes for possible design elements. To keep the editable region to remain on top, why not update the core css to have 4 digit z-indexes? Right now, I'm adding div#ccm-highlighter with zindex of 999 (with !important) in my stylesheet just to get by.
My two cents..
div#ccm-highlighter {margin-top:-49px!important}
to my edit.css file for a quick fix. as the highlighter was offset by the edit bar height (49px)
to call up this file in edit mode I use:
hope this helps someone else!