A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
Hi, if someone else gets here via google I can confirm that the solution below works for setting z-index on content areas and custom blocks.
<!-- Content area -->
<div data-epi-overlay-z-index="501" @Html.EditAttributes(m => m.CurrentPage.BottomContentArea)>
@Html.DisplayFor(m => m.CurrentPage.BottomContentArea)
</div>
<!-- Custom block -->
<div data-epi-overlay-z-index="501" @Html.EditAttributes(m => m.CurrentPage.CustomBlock)>
@Html.DisplayFor(m => m.CurrentPage.CustomBlock)
</div>
I read this http://joelabrahamsson.com/specify-z-index-for-a-propertys-overlay-in-episervers-on-page-edit-mode/
But can i do something like this when using (notice its a ContentArea)
@Html.PropertyFor(m => m.CurrentPage.BottomContentArea, new { CssClass = "row", tag = Statics.ContentAreaTags.FullWidth })