Twentyeleven Child: How to remove last pipe character from nav menu
-
I have a Twentyeleven child theme
https://www.sparklynx.be/preview/demaeyer/I added code to the header.php to add the pipe character ‘|’ between the nav menu items
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'link_after' => '<span class="my-span">|</span>' ) ); ?>
And I added this CSS code to style it
.my-span{ float:right; margin-left: 0.5em; /*adds space left btw navi menu items*/ margin-right: 0.5em; /*adds space right btw navi menu items*/ color: white; /*make white pipe*/ }
But how do I remove the last pipe character from the nav menu?
I tried the solutions offered on this forum and elsewhere, but nothing worked for me.Any ideas?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Twentyeleven Child: How to remove last pipe character from nav menu’ is closed to new replies.