Change Font in header/menu

Discussion in 'ButterBelly WordPress Theme' started by sspore520, Jul 17, 2014.

Thread Status:
Not open for further replies.
  1. sspore520

    sspore520 New Member

    Joined:
    Oct 5, 2012
    Messages:
    27
    Likes Received:
    2
    How can I change the font/size in the header/menu without going through FTP? Is there css for this?
     
  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:
    #menu .ddsmoothmenu li a {
    font-family: symbol;
    font-size: 12px;
    } 
    In place of "symbol" you can put your font.
    You can change the value of "font-size" as per your requirement.
    This will fulfill your requirement.
     
  3. sspore520

    sspore520 New Member

    Joined:
    Oct 5, 2012
    Messages:
    27
    Likes Received:
    2
    Perfect! Thank you!
     
    Piyush likes this.
Thread Status:
Not open for further replies.

Share This Page