I met a fellow last night that said a theme reviewer told him style.css had to be linked directly in header.php, and couldn't be enqueued through wp_enqueue_scripts, like this:<div><br></div><div><div>add_action('wp_enqueue_scripts', 'themeslug_enqueue_scripts_styles');</div>
<div><br></div><div>function themeslug_enqueue_scripts_styles() {</div><div> wp_enqueue_style( 'themeslug-styles', get_stylesheet_uri() );</div><div>}</div></div><div><br></div><div><br></div><div>Is this the case?..</div>