I am using the theme twentyten as a parent theme for my child theme. I have other stylesheets I want to use and so I'm trying to figure out how to wp_deregister_style for the style.css sheet that is printed out in the head section of the html.
I have checked the global $wp_styles variable around the shutdown hook and I see the other styles but not style.css - how can I get my child theme to stop using it?
I realize the theme name and info has to be stored here - I don't want to delete it, I just don't want it to be enqueued
@import url("../twentyten/style.css");in style.css of the child theme? - then remove it. – Michael Jan 25 '12 at 21:19