Hello DevNet community,
I'm working with Kentico 13 MVC and using a master page (_XYZMaster.cshtml) with a page template that inherits from it.
I've added an editable-area tag helper for a logo (< editable-area area-identifier="LogoZoneArea" / >) within the master page's header. The goal is to allow content editors to manage the logo directly in the Page Builder.
SO, the < a > tag for the logo appears in the HTML, but the editable zone is not rendering its content. It's completely empty.
something like this I added
< header >
< a class="navbar-brand" href="..." >
< editable-area area-identifier="LogoZoneArea" / >
< /a >
< /header >