New Topic

Reply To: Customization (My Website)

Home › Forum › Customization › Customization (My Website) › Reply To: Customization (My Website)

#887

uendi
Participant

Hello StartupWP,

Thank you so much for your help. From the Appearance => Widget, I can see “Footer Widget Area 2” is just on top of Side Widget Area.

Now I am thinking to shift the Footer Widget Area 2 to place just below Footer Widget Area, so I move the code from the top to the bottom, but it is not moving at all when I refer to the Appearance => Widget again.

Footer.php

<?php $options = get_option(‘startup_options’); ?>
<div class=”clear”></div>
</div>
<footer>
<?php if ( has_nav_menu( ‘footer-menu’ ) ) : ?>
<div id=”fmenu”><?php wp_nav_menu( array( ‘theme_location’ => ‘footer-menu’, ‘depth’ => ‘1’ ) ); ?></div>
<?php endif; ?>
<div id=”copyright”>
<?php
if ($options[‘copyright’]!=””) echo do_shortcode( $options[‘copyright’]); else echo sprintf( __( ‘%1$s %2$s %3$s. All Rights Reserved.’, ‘startup’ ), ‘©’, date(‘Y’), esc_html(get_bloginfo(‘name’)) );
if ( $options[‘credit’] ){ echo ‘ ‘ . sprintf( __( ‘Proudly Built with %1$s and %2$s.’, ‘startup’ ), ‘StartupWP‘, ‘WordPress‘ ); }
?>
</div>
</footer>
<div id=”footer-sidebar”>
<?php if ( is_active_sidebar(‘footer-widget-area’) ) : ?>
<div id=”fsidebar” class=”widget-area”>
<ul class=”sid”>
<?php dynamic_sidebar(‘footer-widget-area’); ?>

<div class=”clear”></div>
</div>
<?php endif; ?>
</div>
</div>

<div id=”footer-sidebar”>
<?php if ( is_active_sidebar(‘footer-widget-area-2’) ) : ?>
<div id=”fsidebar” class=”widget-area”>
<ul class=”sid”>
<?php dynamic_sidebar(‘footer-widget-area-2’); ?>

<div class=”clear”></div>
</div>
<?php endif; ?>
</div>

<?php wp_footer(); ?>
</body>
</html>

Thanks.