GetSimple Support Forum
QUESTION Innovation Theme: Italic Text In Posts - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: Themes (http://get-simple.info/forums/forumdisplay.php?fid=10)
+--- Thread: QUESTION Innovation Theme: Italic Text In Posts (/showthread.php?tid=9517)



Innovation Theme: Italic Text In Posts - joyofweaving.com - 2017-02-23

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?


RE: Innovation Theme: Italic Text In Posts - joyofweaving.com - 2017-02-23

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?


RE: Innovation Theme: Italic Text In Posts - Carlos - 2017-02-24

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; }



RE: Innovation Theme: Italic Text In Posts - joyofweaving.com - 2017-03-10

Thank you!