Change font style

Discussion in 'Photomaker WordPress Theme' started by sangermike, Aug 21, 2014.

  1. sangermike

    sangermike Member

    Joined:
    Mar 9, 2014
    Messages:
    311
    Likes Received:
    5
    How can I change the fonts style of the Page titles? I want to leave the font style on the homepage but once I click on links to pages, I'd like to be able to change the style of the page title. Thanks
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    You have to import font from Google and after that you can change font style.
    Goto,
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS ) of your dashboard

    Code:
    @import url(http://fonts.googleapis.com/css?family=Open+Sans);
    .page h1.page_title {
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    color:green;
    }
    You can change font style according your need above code is for providing you a way to make change as per your need.
    And you can find online google font from here:
    https://www.google.com/fonts
    -Select a font style
    -Add to collection
    -Use
    -@import
    -Copy that code in your custom CSS.
    Thanks & Regards
    Pramod
     
  3. sangermike

    sangermike Member

    Joined:
    Mar 9, 2014
    Messages:
    311
    Likes Received:
    5
    The font I wanted is not available on google fonts :( I have to buy it for $29.00 Is there another option? Do we have other free choices?
     
  4. sangermike

    sangermike Member

    Joined:
    Mar 9, 2014
    Messages:
    311
    Likes Received:
    5
    well never mind the question - there's alot of google fonts, just not the one I want. Thanks again!
     
  5. sangermike

    sangermike Member

    Joined:
    Mar 9, 2014
    Messages:
    311
    Likes Received:
    5
    Can I at least make it as thin as the ones on the side slider? How?
    scrnshotfont.jpg
     
  6. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste following code in Custom CSS and save it.
    Code:
    h1.page_title {
    font-weight: normal;
    }
    Thanks & Regards
    Yogesh Bhade
     

Share This Page