GetSimple Support Forum

Full Version: Innovation Theme: Italic Text In Posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I noticed with the Innovation them that if I choose the "italic" button in the WYSIWYG the
Code:
<em> and</em>
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?
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?
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; }
Thank you!