Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #866964

    adsupplyx
    Participant

    I’m trying to add a secondary, text-only footer menu directly below the existing primary footer menu. The goal is to provide links to our company privacy policy and terms of service while not having those page options clutter our primary page navigation.

    I’m going to follow up with a private reply with post details.

    #866972

    adsupplyx
    Participant
    This reply has been marked as private.
    #866981

    adsupplyx
    Participant
    This reply has been marked as private.
    #867419

    Christopher
    Moderator

    Hi there,

    Your site requires authentication credentials, please provide us with credentials.

    Thanks.

    #867963

    adsupplyx
    Participant
    This reply has been marked as private.
    #868746

    Christopher
    Moderator

    Hi there,

    Please add the following code in Customize -> Custom -> CSS :

    ul#menu-footer-nav-secondary li {
        float: left;
    }
    .menu-footer-nav-secondary {
        background-color: #403C59;
    }
    .menu-footer-nav-secondary ul {
        margin: 0 auto;
        display: table;
        text-align: center;
    }
    ul#menu-footer-nav-secondary li a {
        display: inline;
        letter-spacing: 1px;
        text-transform: uppercase;
        opacity: 1;
        font-size: 11px;
        color: #fff;
    }
    ul#menu-footer-nav-secondary li:first-child:after {
        content: " ";
    }
    ul#menu-footer-nav-secondary li:after {
        content: "/";
        float: left;
        margin: 0 0.33em 0 0.33em;
        opacity: 0.35;
        color: #fff;
    }

    To display custom menu after footer menu, please place your code just before this line :

    <?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; ?>

    Hope it helps.