Butterbelly Fonts

Discussion in 'ButterBelly WordPress Theme' started by rtrube, Dec 17, 2013.

  1. rtrube

    rtrube Guest

    Joined:
    Nov 4, 2013
    Messages:
    3
    Likes Received:
    0
    Location:
    Michigan USA
    Is there an easy way to use a different font (or fonts) in the theme?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Go to js > custom.js present in your theme directory and remove the code given below

    Code:
    //Cufon replacement
    Cufon.replace('h1')('h2')('h3')('h4')('h5')('h6')('.ddsmoothmenu a');
    
    Now,
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    h1,h2,h3,h4,h5,h6{
    font-family:symbol ! important;
    }
    p{
    font-family:symbol ! important;
    }
    a{
    font-family:symbol ! important;
    }
    span{
    font-family:symbol ! important;
    }
    strong{
    font-family:symbol ! important;
    }
    ul,li{
    font-family:symbol ! important;
    }
    
    In place of "symbol" you can put your font type.
    This will solve your issue.
     

Share This Page