change nav bar color
-
I’m trying to change the nav bar color, and the “Change menu colour” discussion above hasn’t helped me. In the style sheet I added & specified a background color, and I changed the border color. The border did change to the specified color, but the background color remains black. Here’s the url of the website: https://blog.roommates4boomers.com. Here’s the section of the style sheet I edited. Thank you for your help!
.navbar-inner {
min-height: 30px;
margin-right: 4px;
margin-top: -35px;
padding-left: 20px;
padding-right: 20px;
background-color: #83579a;
background-image: -moz-linear-gradient(top, white, #f2f2f2);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#f2f2f2));
background-image: -webkit-linear-gradient(top, white, #f2f2f2);
background-image: -o-linear-gradient(top, white, #f2f2f2);
background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=’#ffffffff’,endColorstr=’#fff2f2f2′,GradientType=0);
border: 1px solid #83579a;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
*zoom: 1;
}
- The topic ‘change nav bar color’ is closed to new replies.