Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #129715

    fedeari7
    Participant

    Hello there,
    When I work with my PC, Open Sans font works well, but if I watch the same slider from a different PC Open Sans become a default font.
    How do I solve this?
    Thank you in advance

    #129979

    Kosher K
    Member

    Hi There,

    Thanks for writing in,

    Would you mind providing additional details of your site and url of your site for us to check.

    Thank you

    #130285

    fedeari7
    Participant
    This reply has been marked as private.
    #130310

    fedeari7
    Participant
    This reply has been marked as private.
    #130577

    Christopher
    Moderator

    Hi there,

    it seems you didn’t add the font correctly.
    Please follow the link to make sure you have done all the steps for adding and inserting google font
    http://themepunch.com/codecanyon/revolution_wp/documentation/#!/google_fonts.

    Hope it helps.

    #131142

    fedeari7
    Participant
    This reply has been marked as private.
    #131338

    Paul R
    Moderator

    Hi,

    Can you try the code below.

    You can add this under Custom > CSS in the Customizer.

    
    .tp-caption {
        font-family: "Trebuchet MS",Helvetica,sans-serif !important;
    }
    

    If that doesn’t work, would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:

    – Link to your site
    – WordPress Admin username / password
    – FTP credentials

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Thanks

    #132653

    fedeari7
    Participant
    This reply has been marked as private.
    #132754

    fedeari7
    Participant

    Hello! This problem seems to be a probleme because i’m using Google Chrome.
    If i switch the browser to Firefox or Safari i see font like this:
    null
    But if I use Google Chrome it will become like this:
    null
    I’d like to use the GoogleChrome-style font even in other browsers.
    Thank you.

    #132770

    Christian
    Moderator

    Hey there,

    Please try adding the code below in the Appearance > Customize > Custom > CSS.

    .tp-caption {
        font-weight: normal !important;
    }

    Hope that helps. 🙂

    #132787

    fedeari7
    Participant

    Hello,
    it doesn’t work. I mean, with that code, the font became like in this image: null
    But what I want is a different thing.
    I want to obtain this result: null

    #132792

    Christian
    Moderator

    Please setup your font addition like http://prntscr.com/506xxs in Punch Fonts.

    Thanks.

    #132799

    fedeari7
    Participant

    Same Result,
    I can see the font, other PCs can’t.
    Mh, any other idea? 🙂
    Thank you.

    #132904

    Paul R
    Moderator

    Hi,

    Can you try setting up a child theme.

    http://theme.co/x/member/kb/how-to-setup-child-themes/

    Then add this in the child theme’s functions.php

    
    function my_custom_head_output() {
      ?>
        <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
      <?php
    }
    
    add_action( 'wp_head', 'my_custom_head_output', 99999 );
    

    Then you can add this under Custom > CSS in the Customizer.

    
    .tp-caption {
        font-family:'Open Sans', sans-serif !important;
    }
    

    Thanks