• Resolved Charmer83

    (@charmer83)


    i need to know how to make the menu bar the same color in all browsers. it shows the color i want in ie but not in the other browsers. can someone tell me what i need to add to the css to make this happen.

Viewing 8 replies - 1 through 8 (of 8 total)
  • 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.

    Thread Starter Charmer83

    (@charmer83)

    sorry site is

    Thread Starter Charmer83

    (@charmer83)

    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.

    Thread Starter Charmer83

    (@charmer83)

    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%;
    }
    Thread Starter Charmer83

    (@charmer83)

    thank you so much dkotter… i let you know how that works.

    Thread Starter Charmer83

    (@charmer83)

    dkotter you are a genius… that worked perfectly. thanks again

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘cross browser incompatible’ is closed to new replies.