hi i was looking for tips to manipulate the horizontal nav bar display in evenly sized boxes across full width of screen. when i try to do this with the css below i can get the bar to go full width pretty easy but the text links hug to the right side of the bar
.
/*—this makes nav bar full width
.x-navbar-inner .x-container.max.width {
width: 100% !important;
max-width: 100% !important;
}—*/
/—border\text effects on nav bar—/
ul li a {
border-left: 1px solid rgba(248,248,248, 0.15);
border-right: 1px solid rgba(0,0,0, 0.5);
box-shadow: inset 3px 0px 5px rgba(0,0,0, 0.1);
}