Footer furán viselkedik - miért?

Sziasztok, SKT Yogi Lite sablont használok. Átírtam a gyári beállítású footert. Azóta a 3 konténer helyén egy egybefüggő sötétség mutatkozik. Ez mitől lehet, és mi a megoldás?

Ez a kódja:_

<div id=“footer-wrapper”>

<div class=“container”>

<div class=“cols-3 widget-column-1”>

<?php if ( get_theme_mod( ‘about_title’ ) !== “” ){ ?>

<h5><?php echo esc_attr( get_theme_mod( ‘about_title’, __(‘About Yogi’,‘skt-yogi-lite’))); ?></h5>

<?php } ?>

<?php if ( get_theme_mod( ‘about_description’ ) !== “” ){ ?>

<?php echo esc_attr( get_theme_mod( 'about_description', __('Consectetur, adipisci velit, sed quiaony on numquam eius incidunt, ut laboret dolore agnam aliquam quaeratine voluptatem. ut enim ad minima veniamting suscipit lab velit, sed quiaony on numquam eius. Consectetur, adipisci velit, sed quiaony on numquam eius modi tempora incidunt, ut laboret dolore agnam aliquam quaeratine voluptatem. ut enim ad minima veniamting suscipit lab velit.','skt-yogi-lite'))); ?>

<?php } ?>

</div><!–end .col-3–>

<div class=“cols-3 widget-column-2”>

<?php if ( get_theme_mod( ‘recentpost_title’ ) !== “” ){ ?>

<h5><?php echo esc_attr( get_theme_mod( ‘recentpost_title’, __(‘Recent Posts’,‘skt-yogi-lite’))); ?></h5>

<?php } ?>

 

<?php $args = array( ‘posts_per_page’ => 2, ‘post__not_in’ => get_option(‘sticky_posts’), ‘orderby’ => ‘date’, ‘order’ => ‘desc’ );

query_posts( $args ); ?>

<?php while ( have_posts() ) : the_post(); ?>

<div class=“recent-post”>

"><?php the_post_thumbnail(‘thumbnail’); ?>

"><h6><?php the_title(); ?></h6>

<?php echo skt_yogi_lite_content(12); ?>

</div>

<?php endwhile; ?>

 

</div><!–end .col-3–>

<div class=“cols-3 widget-column-3”>

<?php if ( get_theme_mod( ‘contact_title’ ) !== “” ){ ?>

<h5><?php echo esc_attr( get_theme_mod( ‘contact_title’, __(‘Contact Info’,‘skt-yogi-lite’))); ?></h5>

<?php } ?>

<?php if ( get_theme_mod(‘contact_add’) !== “”) { ?>

<?php echo esc_attr( get_theme_mod( ‘contact_add’, __(‘100 King St, Melbourne PIC 4000’,‘skt-yogi-lite’))); ?>

<?php } ?>

<?php if ( get_theme_mod(‘contact_no’) !== “”) { ?>

<?php echo esc_attr( get_theme_mod( ‘contact_no’, __(’(0712) 456 9190’,‘skt-yogi-lite’))); ?>

<?php } ?>

<?php if( get_theme_mod(‘contact_mail’) !== “”){ ?>

"><?php echo get_theme_mod(‘contact_mail’,‘contact@company.com’); ?>

<?php } ?>

<div class=“social-icons”>

<?php if ( get_theme_mod(‘fb_link’) != “”) { ?>

">

<?php } else { ?>

<?php echo ‘’; } ?>

<?php if ( get_theme_mod(‘gplus_link’) != “”) { ?>

">

<?php } else { ?>

<?php echo ‘’; } ?>

</div>

</div><!–end .col-3–>

<div class=“clear”></div>

</div><!–end .container–>

<div class=“copyright-wrapper”>

<div class=“container”>

<div class=“copyright-txt”><?php esc_attr_e(’&copy; 2017-2018.’);?> <?php esc_attr_e(‘Minden jog fenntartva. | ORIENTA.HU | Kovács Ágnes e.v. | Kreaktiva.hu’ ); ?></div>

</div>

<div class=“clear”></div>

</div>

</div><!–end .footer–>

<?php wp_footer(); ?>

</body>


</html>