在Bootstrap 2中使用my own覆盖引导navbar CSS

在Bootstrap 2中使用my own覆盖引导navbar CSS,css,twitter-bootstrap,twitter-bootstrap-2,Css,Twitter Bootstrap,Twitter Bootstrap 2,我试图覆盖TwitterBootstrap 2中导航栏的CSS,下面是我在控制台中看到的CSS,当我需要元素时 // CSS found in the original bootstrap.css .navbar-inner { background-color: #fafafa; background-image: linear-gradient(to bottom, #ffffff, #f2f2f2); background-repeat: repeat-x; border: 1px

我试图覆盖TwitterBootstrap 2中导航栏的CSS,下面是我在控制台中看到的CSS,当我需要元素时

// CSS found in the original bootstrap.css
.navbar-inner {
 background-color: #fafafa;
 background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
 background-repeat: repeat-x;
 border: 1px solid #d4d4d4;
 border-radius: 4px;
 box-shadow: 0 1px 4px rgba(0, 0, 0, 0.067);
 padding-left: 20px;
 padding-right: 20px;
}
我的CSS在我自己的custom.CSS中重写这个类 //

如何修改custom.css中的navbar内部类以删除所有框阴影/边框半径/背景图像。。
我基本上只想要一个没有任何边界的白色背景。

当然。。。我需要睡觉

background-image: none !important;

box阴影:无用于删除框阴影
background-image: none !important;