I've identified two methods of separating pages in nav menu on my blog (http://reasonandfolly.com) but cannot figure out what php or css file needs to be modified to achieve the result and will admit to not knowing the difference between "span class" and "span divider." Until I get a better handle on basic WP coding, I'd truly appreciate some help. Either of the below examples would fulfill my needs. The question is, how do I implement?
http://www.themezilla.com
< span class = " divider " > / < /span >http://chimpchomp.us
< span id = " divider " > // < /span >
This is the code currently in my header.php file:
</div><!-- /logo -->
<nav>
<?php wp_nav_menu( array( 'menu' => __('Main Menu', 'meanthemes'), 'theme_location' => 'primary', 'container' => false, 'menu_id' => false, 'menu_class' => false ) ); ?>
</nav><!-- /nav -->
</div>
</header><!-- /header -->