Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Wild Seasoning – Image With White Box Right

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

	// Attributes
	extract( shortcode_atts(
		array(
			'img' => '',
			'main-title' => '',
			'subtitle' => '',
		), $atts )
	);

	// Code
return '<section class="element aq_block clearfix home">
  <div class="connect" style="width:50%;float:left;position:relative;">
    <div class="images"> <img src="' . $img . '" alt="' . $main-title. '"> </div>
  </div>
  <div class="white-right2" style="width:50%;float:left;position:relative;">
    <p class="alt">' . $subtitle . '</p>
    <h3>' . $main-title . '</h3>
    <div class="borderline"></div>
    ' .  . '
  </div>
  <div class="clear"></div>
</section>';

}
add_shortcode( 'img-white-box-right', 'img_white_box_right' );