調整導覽工具列位置到滑動圖片下方
上傳後清cache,後台設定導覽工具列位置為「上方」,另外三個選項上方鎖定/下方鎖定/預設仍然有效
修改了兩個檔案
1. /tpl/header.html
將64行開始的部分移到檔案最後
<!-- NAVBAR位置 -->
<{if $navbar_pos}>
<div class="navbar <{$navbar_pos}>">
<{includeq file="$theme_name/tpl/navbar.html"}>
<{/if}>
2. /css/bootstrap.css
在1362行開始的.navbar-static-top設定中
.navbar-static-top {
position: static;
margin-bottom: 0px;
}
加入
width:980px;
margin:0 auto;
變成
.navbar-static-top {
position: static;
margin-bottom: 0px;
width:980px;
margin:0 auto;
}