Space Out Links to Fill Entire Navigation Width
-
In the Organization theme, I want to space out the main navigation links evenly to fill the entire width of the navigation bar… something along the lines of this: http://jsfiddle.net/thirtydot/jwJBd/
How can I do this?
The blog I need help with is: (visible only to logged in users)
-
Hi there, this will space out the menu items across the screen. I’ve used a Media Query to limit this to 768px and wider screens/windows since below that the touch device menu activates.
@media screen and (min-width: 768px) { .menu { display: table; width: 100%; } .menu li { display: table-cell; float: none; } .menu li a { display: block; text-align: center; } } -
-
-
- The topic ‘Space Out Links to Fill Entire Navigation Width’ is closed to new replies.