It's possible?
I use this code with the repeater module:
<?php foreach($page->ber_MDL_ripetitore as $ber):?>
<li>
<a class="uk-accordion-title" href="#">
<div class="fa fa-comments"></div><h2 class="perh2faq"><?=$ber->ber_MDL_domanda?></h2>
</a>
<div class="uk-accordion-content">
<p style="color: white;">
<?=$ber->ber_MDL_risposta?>
</p>
</div>
</li>
<?php endforeach;?>
The html code <a></a> is used to open the text area after a click (I use ui-kit css/js). I changed the html code from <p></p> to <div></div> but that doesn't work either.Then I removed CKE and replaced it with simple "textarea", but <p></p> always appears on the sides of the text. It's amazing. I don't know what I'm doing wrong...
Any suggestions?