Menu Color
-
Hi, so I am making a website, and I am trying to change the menu color to my own personal color. I went into the CSS, menu, part of the style.css and changed the background to the color I wanted, but it did not work. I do not know what else to do.
My website is iamwelladjusted.com. If anyone can help, it would be greatly appreciated.
Also here is the list of the part I think I have to change to change the color of the menu.
.main-navigation .navbar-inner {
padding: 0;
min-height: 20px;
border: 1px solid;
border-color: #888888 #666666 #666666 #666666;
-webkit-border-radius: 3px;
border-radius: 3px;
background: #404C66;
background: -moz-linear-gradient(top, #b6b6b6 0%, #a4a4a4 1%, #919191 51%, #858585 52%, #717171 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b6b6b6), color-stop(2%, #a4a4a4), color-stop(51%, #919191), color-stop(52%, #858585), color-stop(100%, #717171));
background: -webkit-linear-gradient(top, #b6b6b6 0%, #a4a4a4 2%, #919191 51%, #858585 52%, #717171 100%);
background: -o-linear-gradient(top, #b6b6b6 0%, #a4a4a4 1%, #919191 51%, #858585 52%, #717171 100%);
background: -ms-linear-gradient(top, #b6b6b6 0%, #a4a4a4 1%, #919191 51%, #858585 52%, #717171 100%);
background: linear-gradient(to bottom, #b6b6b6 0%, #a4a4a4 1%, #919191 51%, #858585 52%, #717171 100%);
box-shadow: none;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=’#a4a4a4′, endColorstr=’#717171′, GradientType=0);
}Thanks in advance!
- The topic ‘Menu Color’ is closed to new replies.