Menu on bottom

Discussion in 'Real Photography WordPress Theme' started by appleguy, Aug 29, 2015.

  1. appleguy

    appleguy Guest

    Joined:
    Oct 24, 2014
    Messages:
    63
    Likes Received:
    1
    My client wants me to add a menu bar at the bottom of the page that goes across the page evenly instead of vertical

    ihomefurniturestore.com

    Thanks.
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi,

    Please follow the screenshot given below.
    Realphotography_add_footer_menu.png

    PHP:
    <div class="clear"></div>
    <div class="menu_wrapper footer_menu">
        <div id="MainNav">
            <a href="#" class="mobile_nav closed">Pages Navigation Menu<span></span></a>
            <?php realphotography_nav(); ?>                   
        </div>
    </div>
    Note: - For your information, I am using "WP-Editor" plugin to edit files.
    You can also download and use it from the link https://wordpress.org/plugins/wp-editor/.

    After activating this plugin, you will get the same screen as shown in the screenshot.


    Now, paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .footer-bottom {
        margin-bottom: 0;
    }
    .footer_menu #menu {
        border-top: none !important;
    }
    Hope it will resolve your issue.

    Regards!
    Praveen
    InkThemes.com
     

Share This Page