Hi
I think i can help you for adding new menu bar to a stylesheet.
The first step is to copy the following stylesheet code and save it as bmenu.css.
body {margin:0; padding:0;}
#nav ul {margin:0; padding:0;list-style: none;
position:absolute; border: 1px solid #ccc;
background-color:#99f; width:100%;}
#nav li {float: left; width: 10em; height:1.2em;}
#nav li a {color:#fff; text-decoration:none;}
#nav div {position:relative; top:1.3em; height:2em;}
#nav div ul {display:none;}
After this you can modify this code so the menu looks the way you want.
To apply this stylesheet to the menu we link it into the head of our web page.
<link rel=”stylesheet” href=”bmenu.css” type=”text/css” />
I hope that your query will solve.
[link moderated]