font tipe and size

Discussion in 'Local Business WordPress Theme' started by zbero, Dec 1, 2012.

  1. zbero

    zbero New Member

    Joined:
    Oct 20, 2012
    Messages:
    9
    Likes Received:
    0
    Hi,
    My client would like biger and different font:
    1.How to change font style - helvetic and size
    2.How to increase right magrine in fullwidth template
     

    Attached Files:

    • 1.png
      1.png
      File size:
      145 KB
      Views:
      12
  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Hello,

    Put the following code in custom css

    Code:
    body {
        font-family: Your font type;
    }
     
    h1, h2, h3, h4, h5, h6 {
        font-family: Your font type;
    }
    And for your second problem

    Code:
    .fullwidth {
    padding-right: 40px;
    }
    Appearance -> theme options -> styling options -> custom css

    This will solve your problem.
     
  3. zbero

    zbero New Member

    Joined:
    Oct 20, 2012
    Messages:
    9
    Likes Received:
    0
    thank you,but...
    can you tell where in this code I change font style
    for helvetica or other,is it two places where says : Your font type;

    prety newb in this:)
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Please put your font style in both places.
     
  5. zbero

    zbero New Member

    Joined:
    Oct 20, 2012
    Messages:
    9
    Likes Received:
    0
    done,thanks..one more.:)
    how to increse or decrise font size in header, paragraph.
    -screenshot.[​IMG]
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    h6{
    font-size:15px;
    }
    p{
    font-size:14px;
    }
    Adjust its value as per your requirements.
     
  7. zbero

    zbero New Member

    Joined:
    Oct 20, 2012
    Messages:
    9
    Likes Received:
    0
    ok,great!
    NowI only need to icrese font size on the home page feature area.
    thanks
     
  8. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .feature_content p {
    font-size: your font size;
    }
    .feature_content h1 {
    font-size: your font size;
    }
     
  9. zbero

    zbero New Member

    Joined:
    Oct 20, 2012
    Messages:
    9
    Likes Received:
    0
    thank you
     
  10. zbero

    zbero New Member

    Joined:
    Oct 20, 2012
    Messages:
    9
    Likes Received:
    0
    I get biger font in three future area,but in left future area(from video area) stay same.
    I need change it and there?
    thanks
     
  11. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .feature_infobox h1 {
    font-size: 41px;
    }
    .feature_infobox p {
    font-size: 21px;
    }
    Adjust font size as per your requirement.
     

Share This Page