The bootstrap navbar has already a light gradient, the inverse is a dark gradient. What you used in the "filter:" for start and end color is not a correct hex color, change it to: filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f2f2f2', GradientType=1);
On Sat, Mar 2, 2013 at 9:46 PM, Luv2code <[email protected]> wrote: > I have the navbar coded to be a white to light gray, > > .navbar-inverse .navbar-inner { > > 1. background-color: **#f2f2f2**; > 2. background-image: -moz-linear-gradient(top, **#ffffff**, **#f2f2f2** > ); > 3. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(** > #ffffff**), to(**#f2f2f2**)); > 4. background-image: -webkit-linear-gradient(top, **#ffffff**, ** > #f2f2f2**); > 5. background-image: -o-linear-gradient(top, **#ffffff**, **#f2f2f2**); > 6. background-image: linear-gradient(to bottom, **#ffffff**, **#f2f2f2* > *); > 7. background-repeat: repeat-x; > 8. border-color: **#f2f2f2**; > 9. filter: > progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', > endColorstr='#ff111111', GradientType=0); > > } > > it still shows as black in IE 8 and IE 9. > > http://pctechsupporthelp.com/cajerry/index.html# > > can anyone shed some light on how to make it stop showing solid black? > > Thanks for the help :)) > > Best Regards, > > Tony > > -- > You received this message because you are subscribed to the Google Groups > "twitter-bootstrap" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- Raul Matei +40741351728 -- You received this message because you are subscribed to the Google Groups "twitter-bootstrap" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
