Changing fonts

Discussion in 'Blackriders WordPress Theme' started by maggiemae, Feb 19, 2015.

  1. maggiemae

    maggiemae Member

    Joined:
    Dec 15, 2014
    Messages:
    139
    Likes Received:
    0
    I would like to change the following things:

    1. Font of menu bar
    2. Font of titels first till fourth footer widget area
    3. Font page titel
    4. Font text footer widget area
    5. Font button Lead capture form
    6. Font top right contact details

    Can you help me with that?
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hey maggie!

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    1>
    Code:
    div#menu ul li a {
    font-size: 18px !important;
    }
    2>
    Code:
    .feature_inner_box h6 a {
    font-size: 20px !important;
    }
    3>
    Code:
    .content-bar h1 {
    font-size: 24px !important;
    }
    4>
    Code:
    .textwidget {
    font-size: 16px !important;
    }
    .footer_widget ul li a {
    font-size: 16px !important;
    }
    5>
    Code:
    input.btnsubmit {
    font-size: 24px !important;
    }
    6>
    Code:
    .call-us p {
    font-size: 16px !important;
    }
    Thanks,
    Praveen
     
  3. maggiemae

    maggiemae Member

    Joined:
    Dec 15, 2014
    Messages:
    139
    Likes Received:
    0
    Thank you.

    And can you give me also the codes to change the font style because want to change the lettertype as well.

    Thank you
     
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi maggie!

    In the earlier provided code add one property "font-family".
    e.g.
    Code:
    div#menu ul li a {
    font-family: Arial !important;
    }
    Thanks,
    Praveen
     

Share This Page