Tagged: x
-
AuthorPosts
-
March 27, 2016 at 3:17 pm #854415
website is http://www.southwestohiohomeinspections.com
I want my footer menu to be above the social media icons. How do I do that?
March 27, 2016 at 7:33 pm #854573Hi There,
Thanks for posting in.
Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.Then copy the file wp-footer.php from your-wordpress-folder\wp-content\themes\x\framework\views\renew to this folder your-wordpress-folder\wp-content\themes\x-child\framework\views\renew. Open the copied file and then replace the entire content with the following:
<?php // ============================================================================= // VIEWS/RENEW/WP-FOOTER.PHP // ----------------------------------------------------------------------------- // Footer output for Renew. // ============================================================================= ?> <?php x_get_view( 'global', '_header', 'widget-areas' ); ?> <?php x_get_view( 'global', '_footer', 'scroll-top' ); ?> <?php x_get_view( 'global', '_footer', 'widget-areas' ); ?> <?php if ( x_get_option( 'x_footer_bottom_display' ) == '1' ) : ?> <footer class="x-colophon bottom" role="contentinfo"> <div class="x-container max width"> <?php if ( x_get_option( 'x_footer_menu_display' ) == '1' ) : ?> <?php x_get_view( 'global', '_nav', 'footer' ); ?> <?php endif; ?> <?php if ( x_get_option( 'x_footer_social_display' ) == '1' ) : ?> <?php x_social_global(); ?> <?php endif; ?> <?php if ( x_get_option( 'x_footer_content_display' ) == '1' ) : ?> <div class="x-colophon-content"> <?php echo do_shortcode( x_get_option( 'x_footer_content' ) ); ?> </div> <?php endif; ?> </div> </footer> <?php endif; ?> <?php x_get_view( 'global', '_footer' ); ?>
Hope this helps.
March 28, 2016 at 4:35 am #854921Beautiful. Thank you for your help.
March 28, 2016 at 4:38 am #854923You’re welcome! 🙂
-
AuthorPosts