Last active
June 23, 2019 10:36
-
-
Save kontikidigital/49d7260f90dcfedba003 to your computer and use it in GitHub Desktop.
Genesis: Add a separator between menu items in site header
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
/* Add a separator between menu items in site header */ | |
.site-header ul.menu > li a { | |
display: inline-block; | |
vertical-align: middle; | |
} | |
.site-header ul.menu > li:after { | |
content: "|"; | |
font-size: 0.9em; | |
} | |
.site-header ul.menu > li:last-child:after { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment