• Resolved maunus

    (@maunus)


    Can I change header background color in IE8?

    .navbar-inverse {
    background-color: #fff;
    }

    works in other browser, but not in IE8.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Brian Harris

    (@zgani)

    You may need to target the entire .navbar-inverse .navbar-inner elements as follow:

    .navbar-inverse .navbar-inner {
        background-color:#ffffff;
    	background-image:-moz-linear-gradient(top, #ffffff, #ffffff);
    	background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#ffffff));
    	background-image:-webkit-linear-gradient(top, #ffffff, #ffffff);
    	background-image:-o-linear-gradient(top, #ffffff, #ffffff);
    	background-image:linear-gradient(to bottom, #ffffff, #ffffff);
    	background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0);
    	border-color:#ffffff;
    }

    Regards,
    Zulf

    Thread Starter maunus

    (@maunus)

    Problem solved!

    Thanks Zulf

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Header background color IE8’ is closed to new replies.