$align-block-grid-to-grid: false; //removes column gutter so edges of block grid align with grid
Ahh… sorry, I misread this and thought it would remove the gutter/padding from the outer edges of the block-grid element. Not the padding from the main grid columns.
Ok, thanks for taking a look anyway.
Perfect, this works… thanks for taking a look!
Just one correction for anyone else looking at this. There was a missing ‘ after the Google font URL. Should look like this:
if ( ! function_exists( 'add_my_fonts' ) ) {
function add_my_fonts() {
wp_enqueue_style('indieflower', '//fonts.googleapis.com/css?family=Indie+Flower');
}
add_action( 'wp_enqueue_scripts', 'add_my_fonts', 0);
}
Just needed the !important declaration. I can now see the background image as expected!
.header_container,
.nav_container,
.content_container,
.sidebar_container,
.footer_container {
background-color: transparent !important;
}
Thanks for taking a look!