Archived topic
Customize menu
4 replies · Started by Erik on April 24, 2017
Is it possible to customize the menuitems to tabs with space between the items and rounded corners?
Hi Erik,
Try this for rounded corners:
https://generatepress.com/forums/topic/sub-menu/#post-291304
and this for space between items:
.main-navigation .main-nav ul ul li a {
border-bottom: 2px solid #ffffff;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this is what you wanted.
I assume you want rounded top corners with spaces between the actual top level menu items? If so, try this:
.main-navigation .main-nav > ul > li > a {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
margin-right: 5px;
}
Great, thanks!!
Glad we could help!