Tagged: x
-
AuthorPosts
-
April 4, 2016 at 9:52 pm #866964
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.
April 4, 2016 at 10:02 pm #866972This reply has been marked as private.April 4, 2016 at 10:05 pm #866981This reply has been marked as private.April 5, 2016 at 5:32 am #867419Hi there,
Your site requires authentication credentials, please provide us with credentials.
Thanks.
April 5, 2016 at 12:39 pm #867963This reply has been marked as private.April 6, 2016 at 2:31 am #868746Hi 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.
-
AuthorPosts