London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
Episerver always wrap shared block in a <div> tag. I would like to get rid of this. So if in my LinkBlock has a Template with only
<a href="#"
>link</a
>I would get a
<div
><a href="#"
>link</a
></div
>in the browser for a end user. How to get rid of this tag?
If this is not possible how can I change
<div
> to any other tag, or put a CssClass on it. I would expect (like in the above example) to have for example:<aside class="column">
<a href="#"
>link</a
></aside
>Like it is possible in not shared blocks:
<EPiServer:Property runat="server" PropertyName="RightContentArea" CustomTagName="aside" CssClass="column-2 sidebar"
></EPiServer:Property
>