Center-aligned menu with JS
This is the code used on SnippetStash to center the top menu horizontally.
View as text
Event.observe(window, "load", function(){
var top_nav_lis = $$("#navbar ul li");
top_nav_lis.each(function(li){
li.style.width = (100/top_nav_lis.length + '%');
li.style.textAlign = "center";
})
}
)