Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

fullwidth div

// Add Shortcode
function full_width_div( $atts , $content = null ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'bg' => 'ltgray',
			'classes' => '',
		),
		$atts,
		'[fullwidth]'
	);

	return '<div class="col-xs-12 bg-' . $atts['bg'] . ' ' . $atts['classes'] . '">' . $content . '</div>'

}
add_shortcode( '[fullwidth]', 'full_width_div' );