Dear nedzad72,
I took a look at your front-end but did not see the problem,if it happened again to you,you can try as following
Go to the file of templatesja_cooper_businesshtmlcom_contentfrontpagedefault_item.php,Looking for the codes
[PHP]
<div class=”article-content”>
<?php if (isset ($this->item->toc)) : ?>
<?php echo $this->item->toc; ?>
<?php endif; ?>
<?php echo JA_Tools::getFirstP($this->item->text); ?>
</div>
[/PHP]
Change it to
[PHP]
<div class=”article-content”>
<table cellpadding=”0″ cellspacing=”0″ width=”100%”>
<tr><td>
<?php if (isset ($this->item->toc)) : ?>
<?php echo $this->item->toc; ?>
<?php endif; ?>
<?php echo JA_Tools::getFirstP($this->item->text); ?>
</td></tr>
</table>
</div>
[/PHP]
I hope it would help