-
AuthorPosts
-
August 10, 2015 at 11:48 am #485186
Hello!
I’m having troubles with adding font-weight via the Quick CSS and also via the custom.css file.
The font is Roboto from Google Web fonts and it’s selected through the Enfold admin.It works fine adding font-weight: 200; in the Quick CSS and viewed on the front page of the website, but it doesn’t work on any of the subpages, it looks like it stays on 400/normal.
What is the problem here and how do I resolve it?
- This topic was modified 9 years, 3 months ago by grafixstudio.
August 10, 2015 at 3:04 pm #485361Hey grafixstudio!
Please refer to this post and add new fonts weights – http://kriesi.at/documentation/enfold/register-additional-google-fonts-for-theme-options/
Best regards,
YigitAugust 10, 2015 at 6:53 pm #485565Does it have to be in a child theme? I don’t use a child theme at this moment …
August 10, 2015 at 8:14 pm #485592Hi!
Yes, using a child theme is a good habit to get into, http://kriesi.at/documentation/enfold/downloads/. After activating the child theme you can import your settings in Dashboard > Enfold > Import/Export.
Cheers!
ElliottAugust 11, 2015 at 12:11 pm #485875I have activated the child theme and when I paste the code for the fonts in functions.php it doesn’t work and everything goes blank?
August 11, 2015 at 2:58 pm #485973Hey!
I would like to add the code but the Appearance > Editor panel is not available in the dashboard. Please set the user as admin.
Regards,
IsmaelAugust 12, 2015 at 10:08 am #486354Hey
User is admin already…You can’t go through FTP?
Remember the font is Roboto:300August 13, 2015 at 6:38 am #486945Hey!
Alright. Please edit the functions.php file then look for this code around line 17:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_heading_font($fonts) { $fonts['Robots'] = 'Roboto:300'; return $fonts; } add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_content_font($fonts) { $fonts['Google fonts']['Robots'] = 'Roboto:300'; return $fonts; }
You’ll be able to select a new font on General Styling > Fonts panel called “Robots”. Make sure that you copy the code directly from the forum, not from your email.
Cheers!
IsmaelAugust 13, 2015 at 1:56 pm #487193Hello
Ok but there is nothing in the function.php for the child theme. I realize you are more people answering my questions but please stay consistent.
When I add this to either the enfolds regular functions.php or the enfold child functions.php I get a blank screen.
I still get a blank screen in other words, nothing has changed.
August 14, 2015 at 7:18 pm #487904Hi!
please activate the editor function in your backend (Appearance->Editor) so we can check your functions.php. Are you using a child theme?
Best regards,
AndyAugust 17, 2015 at 8:59 am #488686Yes I am using a child theme. It seems that a security plugin removed the editor feature. I deactiveated this plugin but it still doesn’t work.
Please, I have given you FTP-access. Please go through the FTP and make the changes. Or make proper changes to your code so it works, because it doesn’t when I past it in my child themes functions.phpAugust 17, 2015 at 9:12 am #488691Hello again, I have solved it. You ccan now enter the Editor via WP-admin
August 17, 2015 at 1:49 pm #488899Hey!
I checked your child theme’s functions.php and it is empty. Please insert Ismael’s code into it and let us know when you are done, so we can check if it’s working or not.
Cheers!
AndyAugust 17, 2015 at 2:32 pm #488928Ok, this is getting ridiculous. I’ve already told you that the code leaves a BLANK PAGE your PHP-code is FAULTY!
Check the DEBUG now. And the Page Specific Menu plugin is not the plugin causing this, I already tried your code without the plugin activated and it still doesn’t work.
August 17, 2015 at 7:45 pm #489085Hi!
It looks like you copied the code into both the parent and child theme functions.php file which is going to give you an error. Delete the code from the parent theme functions.php file.
If your still having problems then completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest and we’ll do the edit for you.
Cheers!
Elliott -
AuthorPosts
- You must be logged in to reply to this topic.