How to move image to the left of welcome section

Before:

hello-pro-text-image

After:

hello-pro-image-text

Here’s how:

In front-page.php replace

echo '<div class="top"><div class="wrap">';

	if ( is_active_sidebar( 'home-welcome' ) ) {

		genesis_widget_area( 'home-welcome', array(
			'before' => '<div class="home-welcome widget-area">',
			'after'  => '</div>',
		) );
	}

	if ( is_active_sidebar( 'home-image' ) ) {
		genesis_widget_area( 'home-image', array(
			'before' => '<div class="home-image widget-area" style="height:' . $minHeight . ';">',
			'after'  => '</div>',
		) );
	}

echo '</div></div>';

with

echo '<div class="top"><div class="wrap">';

	if ( is_active_sidebar( 'home-image' ) ) {
		genesis_widget_area( 'home-image', array(
			'before' => '<div class="home-image widget-area" style="height:' . $minHeight . ';">',
			'after'  => '</div>',
		) );
	}

	if ( is_active_sidebar( 'home-welcome' ) ) {

		genesis_widget_area( 'home-welcome', array(
			'before' => '<div class="home-welcome widget-area">',
			'after'  => '</div>',
		) );
	}

echo '</div></div>';