Skip to content

Instantly share code, notes, and snippets.

@fovoc
Last active August 29, 2015 14:22
Show Gist options
  • Save fovoc/ded77a536c3b88f00fcd to your computer and use it in GitHub Desktop.
Save fovoc/ded77a536c3b88f00fcd to your computer and use it in GitHub Desktop.
Shoestrap 3 - remove jumbotron paddings whenever a widget is on
<?php
function add_jumbotron_paddings() {
if ( dynamic_sidebar('jumbotron') && is_active_sidebar('jumbotron') ) {
$custom_css = "<style>.jumbotron{ padding-left: 0px; padding-right: 0px; padding-bottom: 0px; }</style>";
echo $custom_css;
}
}
add_action( 'wp_head', 'add_jumbotron_paddings' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment