Customize font, change portfolio img alignment, etc.

  • Posted in : Responsy WP
  • driscoll62
    Participant

    Hello,

    Can you tell me how to change the font(s)? I do not seem to have access to the complete CSS from the Appearance>Editor menu. There are only a few items in that file and none of the items seem to relate to the fonts.

    Can you also tell me how to change the alignment of the preview images in my portfolio? Right now, they seem to be aligned center, but this cuts off the header (therefore, client name) on all my projects. Is there a way to align the images to the top?

    Finally, how do I turn off comments entirely?

    Thanks!

    Mehmet S.
    Keymaster

    Use Custom CSS box to add css codes ( Theme Settings > Style > Custom CSS ),

    How to Change Fonts?

    – Select your font from google web fonts: http://www.google.com/webfonts

    – Click “Quick-use” link,

    – Find “@import” tab and copy @import code like this:

    @import url(http://fonts.googleapis.com/css?family=Cuprum);
    

    – Find “Integrate the fonts into your CSS :” title and copy font-family code like this:

    font-family: "Cuprum", sans-serif;
    

    – Go to Theme Settings > Style > Custom CSS box and paste your codes like this:

    firstly paste this code:

    @import url(http://fonts.googleapis.com/css?family=Cuprum);
    

    for h1 heading paste this code:
    h1 { font-family: "Cuprum", sans-serif; }

    for h2 heading paste this code:
    h2 { font-family: "Cuprum", sans-serif; }

    for h3 heading paste this code:
    h3 { font-family: "Cuprum", sans-serif; }

    for h4 heading paste this code:
    h4 { font-family: "Cuprum", sans-serif; }

    for h5 heading paste this code:
    h5 { font-family: "Cuprum", sans-serif; }

    for h6 heading paste this code:
    h6 { font-family: "Cuprum", sans-serif; }

    Note: Please create new topics for your other questions.

    Isolabella82
    Participant

    Hello,

    I tried to change the font of the site header but nothing changes. Where is my mistake?

    I copied this to the custom css box:

    @import url(http://fonts.googleapis.com/css?family=Meie+Script);
    h1.site-title {font-family: ‘Meie Script’, cursive;}

    Mehmet S.
    Keymaster
    @import url(http://fonts.googleapis.com/css?family=Meie+Script);
    
    #logo h1 a {font-family: 'Meie Script';}
    
    Isolabella82
    Participant

    HI Mehmet

    Thanks for your answer. I copied your code to the custom css box and saved it. But the font doesn´t change. You can see it .

    Isolabella82
    Participant

    Sorry, you can see it here:

    blog

    Mehmet S.
    Keymaster

    Hey, this is Responsy WP forum. You are using Read WP theme. Read WP has built-in 600+ google fonts.

    – remove above codes from custom css box,

    – go to theme options > style > colors and fonts.

    Isolabella82
    Participant

    Thanks, sorry for the mistake.

Viewing 8 posts - 1 through 8 (of 8 total)

The forum ‘Responsy WP’ is closed to new topics and replies.