Just wondering how I can get the menu items on my nav bar to all be the same size and stretch accross the whole slider area. I’m using Nirvana with a child theme and I want it to look like the website below: http://www.breeam.com/
For that you’ll need to write some custom styling to force the menu elements to a specific width (so that they both take equal slices of the menu width and are wide enough for their texts to fit in).
#access > .menu > ul > li {
width: 14%; /* works for 7 menu items */
}
#access > .menu > ul > li > a > span {
text-align: center;
}