Skip to content

Commit

Permalink
Merge pull request #617 from IgorCode/patch-2
Browse files Browse the repository at this point in the history
Removed unnecessary space in close tags for divs
  • Loading branch information
fovoc committed Jun 3, 2015
2 parents f9eae49 + 5bf618a commit 276fcea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions framework/bootstrap/includes/class-Shoestrap_Header.php
Expand Up @@ -60,19 +60,19 @@ function branding() {

echo '<div' . $pullclass . '>';
dynamic_sidebar( 'header-area' );
echo '</div >';
echo '</div>';

if ( $ss_settings['site_style'] == 'wide' ) {
echo '</div >';
echo '</div>';
}

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

if ( $ss_settings['site_style'] == 'boxed' ) {
echo '</div >';
echo '</div>';
}

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

Expand Down

0 comments on commit 276fcea

Please sign in to comment.