Skip to content

Instantly share code, notes, and snippets.

@Rarst
Last active August 24, 2016 20:53
Show Gist options
  • Save Rarst/9840812 to your computer and use it in GitHub Desktop.
Save Rarst/9840812 to your computer and use it in GitHub Desktop.
Responsive grid layout backgrounds for Bootstrap.
<?php
if ( isset( $_GET['grid'] ) ) {
add_action( 'wp_print_styles', function () { ?>
<style type="text/css">
@media (min-width: 768px) {
body {
background: url("http://griddle.it/720px-12-30px") repeat-y center top !important;
}
}
@media (min-width: 992px) {
body {
background: url("http://griddle.it/940px-12-30px") repeat-y center top !important;
}
}
@media (min-width: 1200px) {
body {
background: url("http://griddle.it/1140px-12-30px") repeat-y center top !important;
}
}
</style>
<?php } );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment