Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我在 jetstrap 中创建并下载了一个主题。现在我需要做的就是创建设置我的自定义颜色。我只是在使用下载 jetstrap 主题时得到的 bootstrap.css。有谁知道我在哪里改变颜色?
您需要更改.navbar-inner该类的 CSS。默认情况下,Bootstrap 使用background-image微妙的渐变,所以你会想尝试这样的事情:
.navbar-inner
background-image
.navbar-inner { background-image: none; background-color: #111; }
#111你想要的颜色在哪里。如果您想将其更改为不同的渐变,请尝试使用 CSS3 渐变生成器工具并将其粘贴。
#111