How to change Menubar color and width

I am not sure how to change menubar color and width. Any help will be appreciated. http://www.aas-bd.com

The background color is set in the head of your document:

#access, #access ul ul a {
background: #EE280E;
}

and the other styles are in your style.css file:

#access {
background: #222;
background: -moz-linear-gradient(#252525, #0A0A0A);
background: -o-linear-gradient(#252525, #0A0A0A);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#0A0A0A));
background: -webkit-linear-gradient(#252525, #0A0A0A);
-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
clear: both;
display: block;
float: left;
margin: 0 auto 6px;
width: 100%;
}

I am not sure about which one where I should place your code. Would you kindly inform in details?

OK, firstly, do you know how to access the various code sections of your site? If you don’t know how to edit the files in a text editor, you will have to access them via your admin panel.

Secondly, what do you want the menu bar to look like?

Yes, I know how to access to various code section as well as admin panel. Yes , I want to change menubar or main nvatigaton bar. But I am not sure which code/ part is for changing menu bar. I see many code/things in style.css section of my site but exactly which one is for menu bar?

The bit that I posted above. :slight_smile: