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
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 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.
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!
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.
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!
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.