Page 1 of 1

TinyMCE problem or what ?

Posted: Fri Oct 28, 2005 5:21 pm
by Gasoline
Hi,

CMSMS is super. But the editor (is it a tinymce problem) gives me problems.

When I add in the HTML for instance

Code: Select all

<a name="ancher" id="ancher"></a>
than all the textitems behind it also get this code. So in the editor lots of tags are added. That's really anoying.

Am I doing something wrong or do I have to accept this irritating behavior.

Marc

Re: TinyMCE problem or what ?

Posted: Sun Oct 30, 2005 8:22 am
by amygdela
so if you give an id to an 'a', all other text after that get styled the same way? that's not correct... Are you sure you haven't forgot to close an 'a' tag before?

Re: TinyMCE problem or what ?

Posted: Sun Nov 27, 2005 3:56 am
by JohnJohn
This problem seems to happen when you attempt to add an anchor tag without actually wrapping it round some text.

So this works:

Code: Select all

<a name="CulturalPursuits">Cultural Pursuits</a>
and so does this:

Code: Select all

Cultural Pursuits<a name="CulturalPursuits"> </a>
But this causes TinyMCE to have conniptions as Marc describes:

Code: Select all

<a name="CulturalPursuits"></a>Cultural Pursuits