Column Text delets links when combine a div with a link

Hello, since one of the last updates I have problems with the 'Column Text' element. When I combine a div with a link, the link is removed again after closing the 'Column Text' element. I am assuming this is a bug because it has worked without any problems so far. Is there a workaround for this or an alternative element to insert HTML?

Example

While editing 'Column Text' Element

<div class="container">

  <a href="'somelink">

    <div class="a">

      <h3>Some Content</h3>

    </div>  

    <div class="b">

      <p>Some Content</p>

    </div>

  </a>

</div>


After Closing 'Column Text' Element

<div class="container">

  <div class="a">

    <h3>Some Content</h3>

  </div>  

  <div class="b">

    <p>Some Content</p>

  </div>

</div>

Comments

Sign In or Register to comment.