mikethedj4
Forum Replies Created
Viewing 1 replies (of 1 total)
-
Forum: Themes and Templates
In reply to: Headlines Theme Footerajoull’s code worked a little for me, however the top footer, where the widgets would be was inside the bottom part where, the copyright, and credit would be at. So here’s my small fix to it!
<!-- Footer Widget Area Starts --> <div id="footer-widgets"> <?php if ( ( function_exists('dynamic_sidebar') && (is_active_sidebar('footer-1') || is_active_sidebar('footer-2') || is_active_sidebar('footer-3')) ) ) : ?> <div class="container col-full"> <div class="block"> <?php dynamic_sidebar('footer-1'); ?> </div> <div class="block"> <?php dynamic_sidebar('footer-2'); ?> </div> <div class="block last"> <?php dynamic_sidebar('footer-3'); ?> </div> <div class="fix"></div> </div> </div> <!-- Footer Widget Area Ends --> <div class="fix"></div> <?php endif; ?> <div id="footer"> <div class="col-full"> <div id="copyright" class="col-left"> <p>? <?php echo date('Y'); ?> <?php bloginfo(); ?>. <?php _e('All Rights Reserved.', 'woothemes') ?></p> </div> <div id="credit" class="col-right"> <p><?php _e('Powered by', 'woothemes') ?> <a href="https://www.www.ads-software.com">WordPress</a>. <?php _e('Designed by', 'woothemes') ?> <a href="https://www.woothemes.com"><img src="<?php bloginfo('template_directory'); ?>/images/woothemes.png" width="87" height="21" alt="Woo Themes" /></a></p> </div> </div> </div> <!-- footer Ends --> </div><!-- /#container --> <?php wp_footer(); ?> <?php if ( get_option('woo_google_analytics') <> "" ) { echo stripslashes(get_option('woo_google_analytics')); } ?> </body> </html>
Viewing 1 replies (of 1 total)