It would be easier to help you out if you can post a link to your site or at least the CSS you’re using so we can check it out.
What color are you trying to make it? It shows up to me as a black gradient but looking through the CSS, you are also declaring a greenish color.
yes and i want the greenish color, so how can i change the css so all browsers are the greenish color.
In your style.css file, around line 540, you should see this:
#access {
background: #96B905;
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 0px 0px;
clear: both;
display: block;
float: left;
margin: 0 auto 6px;
width: 100%;
}
You need to get rid of all the background declarations besides the first, so it should look like this:
#access {
background: #96B905;
-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 0px 0px;
clear: both;
display: block;
float: left;
margin: 0 auto 6px;
width: 100%;
}
thank you so much dkotter… i let you know how that works.
dkotter you are a genius… that worked perfectly. thanks again