Hello, I'm trying to create a child theme for salient, I've copied only the files that I modified to the child theme, but it seems that the child theme does not recognize the awesome font, I keep getting boxes for the shopping cart icon, the arrows on the nectar slider, etc. I even tried to copy the font into the child theme folder, but no luck there...
The issue is simply that you have your child theme set up incorrectly - instead of copying and pasting all the contents of the parent theme style.css in, you're supposed to just use @import to grab all the rules and then you can add your custom css below. Here's an example:
/*
Theme Name: My Child Theme
Theme URI: http: //mysite.com/
Description: This is a custom child theme I have created.
Author: My Name
Author URI: http: //mysite.com/
Template: salient
Version: 0.1
*/
@import url("../salient/style.css");
/* ALL YOUR CSS GOES HERE */
Hello, I'm trying to create a child theme for salient, I've copied only the files that I modified to the child theme, but it seems that the child theme does not recognize the awesome font, I keep getting boxes for the shopping cart icon, the arrows on the nectar slider, etc. I even tried to copy the font into the child theme folder, but no luck there...
Any thoughts?
Hey!
I can see it now ?.
-T
ThemeNectar Support Team
Nope, I deactivated it, do you need credentials to Wordpress or to my FTP or both in order to see it?
Hey Again!
Yes please provide use your admin login credentials in a private reply so we can take a look and sort this for you .
Cheers
ThemeNectar Support Team
Hey Thais! The WP login you've provided is actually not an admin so I'm unable to help - can you kindly bump the privileges up so I can assist?
Cheers :)
Hey again!
The issue is simply that you have your child theme set up incorrectly - instead of copying and pasting all the contents of the parent theme style.css in, you're supposed to just use @import to grab all the rules and then you can add your custom css below. Here's an example:
Cheers
Got it, thanks a lot!