Some basic instructions on creating a child theme:
1) Open an FTP program and go to the wp-content/themes directory in your server for the domain you are trying to do this on.
2) Notice the theme directory of the theme you are using. Example: twentyfourteen
3) Create a new directory in the themes directory and name it the same as your themes name with -child appended to it. Example: twentyfourteen-child
4) Copy as a BARE minimum the style.css file from your current theme into the new directory and open it. Add in this line (using our current example of twentyfourteen):
Template: twentyfourteen
5) Also consider appending to the line that says: Theme Name: the word child:
Theme Name: Twentyfourteen Child
6) Copy any files you wish to edit into the new theme’s directory. Edit them in there and don’t touch the files in the old directory. This way when a new version of that theme gets published and you update it in your blog the files you have changed don’t get overwritten.
Now go to your wordpress blogs admin and switch to this new child theme.
* Do not copy the functions.php file into the new child theme directory. This is break your blog. If you intend to add functions code just create a new file inside the child theme called functions.php and only place into it the new code which will be run along with the old functions.php file’s code.