-
AuthorPosts
-
January 29, 2015 at 6:38 pm #387888
Hi I’ve purchase a proxima nova font set and would like to install it onto the theme for use. Apologies, I’ve tried searching for answers on the forum, but am still pretty confused by the steps needed to upload the font. Could you kindly help with the steps needed please? Thank you!
January 30, 2015 at 10:04 am #388185Hey Jon!
Thank you for using Enfold.
You can use Font Face script. Refer to these links for more info:
http://css-tricks.com/snippets/css/using-font-face/
https://kriesi.at/support/topic/use-heading-font-pt-sans-as-a-body-text-font/#post-367409
http://www.w3schools.com/cssref/css3_pr_font-face_rule.aspRegards,
IsmaelJanuary 31, 2015 at 4:36 pm #388771Hi Ismael,
thank you for providing those links. So am I right to assume that I need to upload the fonts onto my server and specify the URL to point ot the font?
February 2, 2015 at 12:01 pm #389259Hi, sorry I’m still a little lost here. Would appreciate the help. Thank you!
February 2, 2015 at 12:04 pm #389266Hi!
Yes, you can use this plugin too:
https://wordpress.org/plugins/wp-font-face/Best regards,
JosueFebruary 2, 2015 at 12:14 pm #389274Hi Josue, thank you for the link. I just have a question, do I need to upload my font files into my wordpress site first? Like upload it into media library? Apologies, I’ve never installed a custom font for wordpress before.
February 2, 2015 at 10:24 pm #389698Hi!
Quoting the installation steps from fontsquirel“>wp-font-face:
1. Upload font-face plugin folder to the /wp-content/plugins/ directory
2. Activate the plugin through the ‘Plugins’ menu in WordPress
3. Generate @font-face packs on fontsquirel
4. Upload generated packages to plugin ‘/font/’ folderBest regards,
JosueFebruary 7, 2015 at 2:15 pm #392476Hi Josue,
Thank you for your help, and I’ve followed it. However, I wanted to use my proxima nova fonts throughout the site, so would like the option of choosing the installed font via the general styling font options. Is there a way I can upload the font so that is it available to select via the Avia admin panel? You help is greatly appreciated!
February 7, 2015 at 5:37 pm #392524Hi!
Yes it’s definitely possible, add this to theme / child theme functions.php:
add_filter( 'avf_google_heading_font', 'add_custom_font_to_styling_options'); add_filter( 'avf_google_content_font', 'add_custom_font_to_styling_options'); function add_custom_font_to_styling_options($fonts) { $fonts['Proxima Nova'] = 'Proxima Nova'; return $fonts; }
Cheers!
Josue -
AuthorPosts
- You must be logged in to reply to this topic.