To "extend the width of each item so I can make the name of the menu items longer" you need to modify the code in the css file (jqueryslidemenu.css) and add in the following:
Code:
/*Top level list items*/
.jqueryslidemenu ul li{
position: relative;
width:200px;
display: inline;
float: left;
}
And change 200px to your desired width.
To "get it to center within the nav bar" you need to edit the same css file and change 'margin:0' to this:
Code:
.jqueryslidemenu ul{
margin-left:auto;
margin-right:auto;
padding: 0;
list-style-type: none;
}
Changing margin-left and margin-right to auto should center everything. However if it doesn't you may need to add this to your code also, but I would suggest only adding this if the above didn't work.
Code:
.jqueryslidemenu{
font: bold 12px Verdana;
background: #414141;
width: 100%;
text-align:center;
}
Bookmarks