Point
Under Appearance > Editor, select ‘header.php’ on the right.
Find:
1 2 3 4 5 6 7 8 9 10 11 12 |
<a href="#" id="pull" class="toggle-mobile-menu"><?php _e('Menu', 'point'); ?></a> <div class="primary-navigation"> <nav id="navigation" class="mobile-menu-wrapper" role="navigation"> <?php if ( has_nav_menu( 'primary' ) ) { ?> <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'menu clearfix', 'container' => '', 'walker' => new mts_Walker ) ); ?> <?php } else { ?> <ul class="menu clearfix"> <?php wp_list_categories('title_li='); ?> </ul> <?php } ?> </nav><!-- #navigation --> </div><!-- .primary-navigation --> |
1 |
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> |
Go to Appearance > Customize > Theme Options > Styling SettingsĀ and insert the following into the Custom CSS area:
1 2 3 |
.site-branding { padding: 0 2%; } |