Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Richie KS

    (@rkcorp)

    add this to child functions.php or wp-content/meso-custom-functions.php if have one

    <?php
    function meso_add_footer_nav() { ?>
    <div id="footer-nav"><div class="innerwrap">your content here</div></div>
    <?php }
    add_action('bp_after_wrapper','meso_add_footer_nav');
    
    // add style for footer nav
    function meso_add_footer_nav_style() { ?>
    #footer-nav {width:100%;float:left;margin:2em 0;text-align:center;}
    #footer-nav .innerwrap {max-width:1120px;margin:0 auto;}
    <?php }
    add_action('wpmeso_custom_css','meso_add_footer_nav_style');
    ?>

    replace ‘your content here’ with your own html content.

    Thread Starter artinte

    (@artinte)

    Thanks Richie ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add Footer Nav Bar’ is closed to new replies.