font size change

Discussion in 'Covera WordPress Theme' started by sharful, Jan 2, 2014.

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

    sharful Guest

    Joined:
    Dec 11, 2013
    Messages:
    15
    Likes Received:
    0
    Will you please tell me how change all the font of theme ? And as well as I need to increase the font size of Main Menu bar ?
     
  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
    Cufon.replace('h1')('h2')('h3')('h4')('h5')('h6'); 
    Now,
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    h1,h2,h3,h4,h5,h6,a{
    font-family:symbol!important;
    }
    p, span{
    font-family:symbol!important;
    } 
    Inplace of "symbol" you can put your font type.


    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    #menu .ddsmoothmenu li a {
    font-size: 20px;
    }
     
    You can change the value of "font-size" as per your requirement.
     
  3. sharful

    sharful Guest

    Joined:
    Dec 11, 2013
    Messages:
    15
    Likes Received:
    0
    i am really grateful to all of you guy . Thanks a lot .
     
Thread Status:
Not open for further replies.

Share This Page