• Resolved ivyvijay

    (@ivyvijay)


    Hi,

    There seems to be some issue with italics in Elmax. None of the text selected as Italics shows up in Italics when I publish my posts.

    Thanks,
    Ivy

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Madalin_JFT

    (@wpbox)

    Hi there,

    seems like that font doesn’t have italics support, you need to add a small piece of code in the style.css to make it work.

    find the following codes in the style.css

    dfn, cite, em, i {
    	font-style: italic;
    }

    and change it to :

    dfn, cite, em, i {
    	font-style: italic;
    	font-family: Arial, Helvetica, sans-serif;
    }

    it will be all okay now.

    i will soon release an update of this theme fixing all these small bugs.

    thanks!

    Thread Starter ivyvijay

    (@ivyvijay)

    Changed the code and the problem isn’t fixed yet. Italics still not showing up when I preview the drafts.

    Ivy

    Theme Author Madalin_JFT

    (@wpbox)

    Hi,

    try adding an !important tag at the last, so the code will be,

    dfn, cite, em, i {
    	font-style: italic;
    	font-family: Arial, Helvetica, sans-serif !important;
    }

    let me know how is it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Italics is not working!’ is closed to new replies.