I have CKEditor on my web site. When I enter this code into source window:
<ul class="active">
<li>
<a href="#">
<img align="" alt="" border="0" src="/media/1.png" />
<h3>Headline</h3>
<span class="prec">from</span>
<span class="price">1</span>
</a>
</li>
</ul>
And then when I click Save it gets formatted to:
<ul class="active">
<li>
<a href="#"><img align="" alt="" border="0" src="/media/1.png" /> </a>
<h3>
<a href="#">Headline</a></h3>
<a href="#"><span class="prec">from</span> <span class="price">1</span> </a></li>
</ul>
Is it possible to completely turn off code reformatting? It also changes some other html codes (flash on page, for example)
Can anybody give me some advice?