• Resolved oetzi13

    (@oetzi13)


    Hi there!
    biancabenz.com
    How do I get rid of the links at the very bottom, In the copyright row?
    Seems like my menu links were dropped in there.
    Txs!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter oetzi13

    (@oetzi13)

    I figured it out.
    Remove

    <div class=”col-md-6 clearfix”>
    <?php wp_nav_menu(array(
    ‘theme_location’ => ‘secondary’,
    ‘container’ => false,
    ‘menu_class’ => ‘clearfix footer_menu’,
    ‘link_before’ => ‘<span>’,
    ‘link_after’ => ‘</span>’,
    )
    ); ?>
    </div>

    from footer.php

    Hi,

    I appreciated your work.

    Its a “Secondary Menu” section.

    You can try this also.

    Use any “Custom CSS” plugin from WordPress plugin directory.

    Now add below CSS rules into Custom CSS editor.

    .footer_menu {
        display: none;
    }

    Save the changes.

    Thanks

    Thread Starter oetzi13

    (@oetzi13)

    much cleaner solution. Thank you!

    You are Welcome.

    Thank You

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘removing very bottom links’ is closed to new replies.