Posts: 59
Threads: 6
Joined: May 2015
I noticed with the Innovation them that if I choose the "italic" button in the WYSIWYG the
tags appear in the source and the text shows up as italic in the editor, but the text doesn't show up in italic in the actual post. How do I fix this or is this a bug?
Posts: 59
Threads: 6
Joined: May 2015
I figured it out. I have to manually replace the <em> which is automatically inserted by the editor with <i> in the editor's source to be able to get the text to show up in italic in the actual post. Bug?
Posts: 3,491
Threads: 106
Joined: Mar 2010
Not a bug. The Innovation theme doesn't have a style for <em>
So just edit style.css and add:
Code:
em { font-style: italic; }
Posts: 59
Threads: 6
Joined: May 2015