-
AuthorPosts
-
October 22, 2014 at 1:22 am #129715
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 advanceOctober 22, 2014 at 10:41 am #129979Hi 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
October 22, 2014 at 7:24 pm #130285This reply has been marked as private.October 22, 2014 at 8:17 pm #130310This reply has been marked as private.October 23, 2014 at 6:02 am #130577Hi 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.
October 23, 2014 at 7:24 pm #131142This reply has been marked as private.October 24, 2014 at 5:02 am #131338Hi,
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 credentialsDon’t forget to select Set as private reply. This ensures your information is only visible to our staff.
Thanks
October 26, 2014 at 7:22 pm #132653This reply has been marked as private.October 27, 2014 at 1:01 am #132754Hello! 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:
But if I use Google Chrome it will become like this:
I’d like to use the GoogleChrome-style font even in other browsers.
Thank you.October 27, 2014 at 1:57 am #132770Hey there,
Please try adding the code below in the Appearance > Customize > Custom > CSS.
.tp-caption { font-weight: normal !important; }
Hope that helps. 🙂
October 27, 2014 at 2:53 am #132787Hello,
it doesn’t work. I mean, with that code, the font became like in this image:
But what I want is a different thing.
I want to obtain this result:October 27, 2014 at 3:04 am #132792Please setup your font addition like http://prntscr.com/506xxs in Punch Fonts.
Thanks.
October 27, 2014 at 3:20 am #132799Same Result,
I can see the font, other PCs can’t.
Mh, any other idea? 🙂
Thank you.October 27, 2014 at 7:23 am #132904Hi,
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
-
AuthorPosts