Tagged: x
-
AuthorPosts
-
January 13, 2017 at 4:51 am #1328593
I have been trying to get it to work.
1. I added in child theme /framework/views/global a file _topbar.php
2. Then:
<?php // ============================================================================= // VIEWS/GLOBAL/_TOPBAR.PHP // ----------------------------------------------------------------------------- // Includes topbar output. // ============================================================================= ?> <?php if ( x_get_option( 'x_topbar_display', '' ) == '1' ) : ?> <div class="x-topbar"> <div class="x-topbar-inner x-container max width"> <?php if ( x_get_option( 'x_topbar_content' ) != '' ) : ?> <p class="p-info"><?php echo x_get_option( 'x_topbar_content' ); ?></p> <?php endif; ?> <?php wp_nav_menu( array( 'menu' => 'topbar-menu', 'container' => false, 'menu_class' => 'x-nav sf-menu', 'container' => 'div', 'container_class' => 'top-menu', ) ); ?> <?php x_social_global(); ?> </div> </div> <?php endif; ?>
3. CSS
.top-menu { float:left; } .top-menu ul { margin:0; } .top-menu li { display:inline-block; } .top-menu li a { padding:0 20px 0 0; line-height:46px; }
4. And setup languages in WPML.
Dropdown works great in main menu but not in topbar menu.
Can anyone recommend a working solution?
January 13, 2017 at 6:20 am #1328657Hi,
Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
January 14, 2017 at 1:06 am #1329635This reply has been marked as private.January 14, 2017 at 2:38 am #1329691Hi there,
Please add following code in Customize -> Custom -> Global CSS :
.top-menu ul.sub-menu li { float: none; display: block; } .top-menu .menu-item-has-children:hover ul { display: block !important; } .top-menu ul.sub-menu { display: none; position: absolute; }
Hope that helps.
January 14, 2017 at 6:34 am #1329841Perfect. You guys are amazing 🙂
January 14, 2017 at 6:47 am #1329849You’re welcome 🙂
-
AuthorPosts