Can I change Page Title and word in text body to Times New Roman

Discussion in 'Themia WordPress Theme' started by bmbpilates, Apr 19, 2013.

  1. bmbpilates

    bmbpilates New Member

    Joined:
    Feb 17, 2013
    Messages:
    3
    Likes Received:
    0
    I need to change the font of a word that is used in both the page title and the text on the page. I have figured out how to make it bold, but I have not had success in changing the font. It needs to be Times New Roman. Any suggestions? Thank you
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to header.php present in your theme directory and remove the code given below
    Code:
    <script type="text/javascript">
    Cufon.replace('h1, h2, h3, h4, h5, h6', { fontFamily: 'Droid Sans', hover: true });
    </script>
    Sending image for reference

    [​IMG]

    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .content_wrapper .side_content h1 {
    font-family: symbol;
    }
    .fullwidth h1{
    font-family: symbol;
    }
    .content_wrapper .side_content p {
    font-family: symbol;
    }
    .fullwidth p{
    font-family: symbol;
    }
    Inplace of "symbol" put your font type.
     
  3. bmbpilates

    bmbpilates New Member

    Joined:
    Feb 17, 2013
    Messages:
    3
    Likes Received:
    0
    Thank you. I just did this and it looked like it changed the header within the page and the text on the page. Is there any way to change the menu links and the widget headings too?
    Ideally I would love to be able to wrap code around the word for example:
    <strong>GYROTONIC®</strong>
    which would make GYROTONIC® bold. This is the word that I need to make bold, and in Times New Roman Caps.
    Thank you for any help!
     
  4. 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:
    #menu li a {
    font-family: symbol;
    }
    .footer_wrapper h6{
    font-family: symbol;
    }
    Inplace of "symbol" put your font type.
     
  5. bmbpilates

    bmbpilates New Member

    Joined:
    Feb 17, 2013
    Messages:
    3
    Likes Received:
    0
    I have made all the changes you have suggested. Now all the text on my pages is Times New Roman, and the top meun bar is in Times New Roman. On the Home Page the Feature Headings are now in a strange font that looks like kids writing. How do I make these heading titles Times New Roman?
    Since you are only giving me code to make changes to the entire site I am under the impression that I cannot only make one word a unique font, correct? That is very unfortunate.
    Please let me know about the heading titles.
    Thanks!
     
  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:
    .feature_content h2, .testimonial_wrapper h2 {
    font-family: Times New Roman;
    }

    This will solve your issue.
     

Share This Page