页面上栏和下栏自定义
下面CSS代码表示:
1,上标题栏透明
2,下标题栏自定义颜色为黑色
<style> .step-header { background-color: transparent !important; } #bottom-nav { background-color: #000 } </style>
其他:
.step-header { background-color: transparent !important; } /*--- 上标题栏透明 --*/ #bottom-nav { background-color: transparent !important; border: 0 !important; } /*--- 下标题栏透明 --*/ .step-header { background-color: transparent !important; display:none; } /*--- 上标题栏隐藏 --*/ 【】#bottom-nav {display:none !important;} /*--- 下标题栏隐藏 --*/ #sidebar-wrapper { background: transparent !important; /*--- 侧边栏透明 --*/ } #sidebar-wrapper {border-right:0px !important;} /*--- 侧边栏分割线隐藏 --*/ body { background-image: url("https://files.getquicker.net/_sitefiles/_guides/52593d69-c99a-4367-8b98-08d9a65be47e/2023/09/05/210631_202824_bg.jpg"); background-repeat: no-repeat; background-size: cover; background-position: center center; }