Enough1.05 has Bug
Image overflow when using widget pinup entries .
Quick Fix
css/post-format.css
.approach-widget img{
max-width:100%;
}
Unintended content is displayed at the bottom of the page When it is set to 1 column
Quick Fix
taxonomy.php line:49
if ( !has_post_format( 'image' ) ) {
enough_dinamic_sidebar( 'sidebar-1', !is_page() );
}
Change from above to below
printf( '<div class="posts-nav-link">%1$s</div>', get_posts_nav_link( array( 'sep'=> ' ', 'prelabel'=> esc_html__( 'Previous Page', 'enough' ), 'nxtlabel'=> esc_html__( 'Next Page', 'enough' ) ) ) );
/* change start */
if ( ! has_post_format( 'image' ) && enough_theme_option('enough_post_one_column_bottom_sidebar') !== 'yes' ) {
enough_dinamic_sidebar( 'sidebar-1', !is_page() );
} else {?>
<br class="clear" />
<?php
}
/* change end */
enough_the_footer();
This Bug will be Fixed next version.