Skip to content

Instantly share code, notes, and snippets.

@sanzeeb3
Created September 12, 2018 15:06
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 sanzeeb3/3628f5f7964bc70661eae850a37f44c5 to your computer and use it in GitHub Desktop.
Save sanzeeb3/3628f5f7964bc70661eae850a37f44c5 to your computer and use it in GitHub Desktop.
Make 100% width for only wedocs documentation page
add_action( 'wp_footer', 'add_wedocs_100_percent' );
function add_wedocs_100_percent() {
?>
<script>
jQuery('.wedocs-single-wrap').parent().parent().css("width","100%");
</script>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment