Skip to content

Instantly share code, notes, and snippets.

@grappler
Created July 16, 2014 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grappler/ed14f5972d335b4e2dfa to your computer and use it in GitHub Desktop.
Save grappler/ed14f5972d335b4e2dfa to your computer and use it in GitHub Desktop.
Disable parent css for Responsive
<?php
function responsive_css() {
wp_dequeue_style( 'responsive-style' );
}
add_action( 'wp_enqueue_scripts', 'responsive_css' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment