分离搜索与菜单栏
找到并打开后面路径,...\themes\butterfly\layout\includes\header\nav.pug,直接使用下面的代码替代源代码。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| nav#nav span#blog-info a.nav-site-title(href=url_for('/')) if theme.nav.logo img.site-icon(src=url_for(theme.nav.logo) alt='Logo') if theme.nav.display_title span.site-name=config.title if globalPageType === 'post' a.nav-page-title(href=url_for('/')) span.site-name=(page.title || config.title) #menus if theme.menu != partial('includes/header/menu_item', {}, {cache: true}) #toggle-menu span.site-page i.fas.fa-bars.fa-fw if theme.search.use #search-button span.site-page.social-icon.search i.fas.fa-search.fa-fw
|
导航栏居中
先找到source文件夹并在其下面新建一个css文件夹,再在css文件夹下新建nav.css文件,直接使用下面的代码替代源代码。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| #nav { font-size: 23px !important; }
@media (min-width: 1024px) { nav#nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; } #menus { display: flex; gap: 4rem; flex-grow: 1; justify-content: space-between; } #search-button { order: 0; } }
.menus_item_child li:not(#sidebar-menus li) { float: left; border-radius: 6px !important; -webkit-border-radius: 6px !important; -moz-border-radius: 6px !important; -ms-border-radius: 6px !important; -o-border-radius: 6px !important; }
.menus_item_child:not(#sidebar-menus ul) { left: 50%; translate: -50%; }
|
样式引用
在_config.butterfly.yml或者./themes/butterfly/_config.yml中找到inject,并在head中添加以下代码:
1 2 3 4 5
| inject: head: - <link rel="stylesheet" href="/css/nav.css"> bottom:
|
效果如下:
