更改 Bootstrap 管理模板

Changing Bootstrap admin template

如何更改此 Bootstrap 3 管理模板

https://getbootstrap.com/docs/3.3/examples/dashboard/

像这样?

很容易移除顶部固定导航栏并将所有内容向上移动 50px(在 dashboard.css 中定义)。我觉得困难的是修改带有徽标顶部矩形部分的侧边栏。

您可以使用这些 css

添加顶部 ul
top: 0;
position: absolute;
margin-bottom: 10px;
width: 100%;
background-color: aquamarine;

第二个 ul 应该有一个 margin-top: 30px;

最后更新 .sidebar 并添加一个 top: 0;

将您的文本放在一个 li 中,放在您刚刚创建的 ul 中。

http://jsfiddle.net/w4k50nbo