Hi there. My child theme isn’t working at all. WordPress is ignoring all of the css or php files that i have created on my child folder. I know that your support does not care about 2nd develop and on the documentation you refer to http://codex.wordpress.org/Child_Themes. I just need to know all child files aren’t overriding their parent’s. Can you help me with that or it’s no longer on the deal?
I don’t know what’s the files you added into the child theme, for CSS issue, you’d better add “body” in front of the CSS name, e.g. body #sidebar{} or body .post{}
For change the exist php functions, you must use add_filter method, e,g, add_filter(‘old_function_name_in_parent’,’new_function_you_wrote’);