Can anyone help? I had a problem with Jackson not saving the html coding (bold, italics, spacing). I emailed the developer and he stated it was a css class duplicate. I have looked through styles.css and can't identify the duplicate. Can someone help?

Thanks!

Comments

hvalentim’s picture

Actually I am having a similar issue: the code is saved all right but the tags are not applied.
Particularly this happens with italic <em> and bold <strong>. If I inspect the code in pages rendered the tags are there but they are not respected/used, they seem to be overridden, which is congruent with the idea of a "css class duplicate" somewhere.

I was able to palliate this by adding the following to styles.css:

em {
	font-style:italic;
}
strong {
	font-weight:bold;
}

Still, this does not seem to be the proper solution, also because inside WYSYWYG editors the problem persists (the tags are added but not rendered). So if anyone knows about the proper way to fix this please share it.