我从 Themeforest 购买了一个 HTML 主题:http://demo.themesurf.com/plumbing/我对此非常满意,但我想让左上角的徽标更大并位于<div>. 有点像这样:https://plumbersinsandiego.com我该如何修改该custom.css文件才能实现这一点?
2 回答
慕桂英3389331
TA贡献2036条经验 获得超8个赞
在 CSS 中使用top将设置徽标的位置。
像这样:
.navbar-brand {
position: absolute;
top: 100px;
z-index: 2; // Don't forgot to put it on the top!
}
翻过高山走不出你
TA贡献1875条经验 获得超3个赞
在“navbar-brand”类中,您可以设置以下 CSS 属性:
position: absolute;
top: 4rem;
z-index: 999;
- 2 回答
- 0 关注
- 92 浏览
添加回答
举报
0/150
提交
取消