Hi,
I'm trying to add custom html within the grid at the bottom of a project page.
It however is not visibly rendered. If I inspect the code it looks like this:
<div class="row one-col-row">
<div class="row-inner">
<div class="column-wrap">
<div class="col push-3 span-6 align-bottom" id data-type="html">
<div>
<!-- My custom code -->
<div class="someTest">
Some text goes here
</div>
<!-- My custom code END -->
</div>
</div>
</div>
</div>
</div>
I would expect to at least see the text, but nothing shows up. When I set a custom CSS to render a line around the class it shows up with 0 pixels.
Any hints what is causing this?