Ok, not really horrible. Anyways I just purchased a theme and was really surprised to find out that the theme doesn't support italics. Yes that simple thing! I did every possible testing but the italics aren't just working. How can I enable that in my theme? Thanks, Melvin
I haven't fully applied it in my blog as I use a themetester. Anyways the stylesheet is located here: http://www.melvinblog.com/wp-content/themes/ColorMaticTheme/style.css
This is the problem. Look for this two parts: em{ font-style:italics; } Code (markup): address, caption, cite, code, dfn, em, th, var { font-style: normal; font-weight: normal; } Code (markup): Replace them as follow: em{ font-style:italic; } Code (markup): address, caption, cite, code, dfn, th, var { font-style: normal; font-weight: normal; } Code (markup): Thats it.