Skip to content

Instantly share code, notes, and snippets.

@dbernar1
Created December 5, 2013 05:22
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 dbernar1/7800531 to your computer and use it in GitHub Desktop.
Save dbernar1/7800531 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Custom CSS for wp-impress-js
*/
add_action( 'impress_head', 'mask_custom_css_for_wp_impress_js' );
function mask_custom_css_for_wp_impress_js() {
?>
<style>
header { z-index: 0 !important; }
</style>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment