Hi

Is it possible to close a HTML p tag after
Code: Select all
<cms:show text/>


It's closing the p tag straight after that couchcms tag, it should be like the following

Code: Select all
<p>
TEXT
<a href="projects.php">View Details</a>
</p>


With couchcms integrated, it's doing the following

Code: Select all
<p>
TEXT
</p>
<a href="projects.php">View Details</a>


It's missing the css styling up as the p tag should be closed after the closing HTML a tag