Font Plugin or Code

Discussion in 'Gommero WordPress Theme' started by irissalmins1, Jan 8, 2014.

  1. irissalmins1

    irissalmins1 Member

    Joined:
    Jan 14, 2013
    Messages:
    239
    Likes Received:
    5
    I need to be able to have the freedom to have more font choices and size and color options as I am doing the text on posts, pages, and home page. Is there a css that you can provide or a plugin that you can suggest?

    Thanks for your time!
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to js > custom.js present in your theme directory and remove the code given below
    Code:
    //Cufon Replacement in heading
    jQuery(document).ready(function() {
        //Cufon.replace('h1')('h2')('h3')('h4')('h5')('h6');
        Cufon.replace('h1, h2, h3, h4, h5, h6,#menu li a');
    });
    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    h1, h2, h3, h4, h5, h6{
    font-size:30px;
    color:red;
    font-family:symbol;
    }
    p, a{
    font-size:20px;
    color:red; symbol;
    }
    Inplace of "symbol" put your font type.


    Thanks & Regards
    Gourav Shrivastava
     

Share This Page