Created
March 28, 2017 18:49
-
-
Save GarySwift/8a9d28921864799c06c92b511877b9f8 to your computer and use it in GitHub Desktop.
FoundationPress: Desktop Center Navigation Addon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Desktop Center Style | |
div.top-bar-center { | |
margin: 0 auto; | |
ul { | |
text-align: center; | |
li { | |
display: inline-block; | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- example usage of center top bar --> | |
<div class="top-bar-center" data-margin-top="100px"> | |
<?php foundationpress_top_bar_center(); ?> | |
<?php if ( ! get_theme_mod( 'wpt_mobile_menu_layout' ) || get_theme_mod( 'wpt_mobile_menu_layout' ) == 'topbar' ) : ?> | |
<?php get_template_part( 'template-parts/mobile-top-bar' ); ?> | |
<?php endif; ?> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment