Hi
Im working towards building a site using Engage Publish that I would like to have passing the wc3 validator and im running into a few issues.
With the standard Text/HTML module there is a small fix you can do to stop it outputting span tags. However Engage Publish is also putting the text into a span tag also. Is there anyway to get it into a div tag instead.
Its a failure to have a p tag inside a span tag so Im trying to eliminate theses errors
e.g. it gives this
<div id="divArticleContent" class="Normal">
<span id="dnn_ctr412_ItemDisplay_ArticleDisplay_lblArticleText">
<p>Nam erat. Fusce rhoncus tincidunt lacus. Nulla tempor sem nec leo.</p>
</span>
</div>
and id prefer this
<div id="divArticleContent" class="Normal">
<div id="dnn_ctr412_ItemDisplay_ArticleDisplay_lblArticleText">
<p>Nam erat. Fusce rhoncus tincidunt lacus. Nulla tempor sem nec leo.</p>
</div>
</div>