Next7 0 背景的設定

2021-10-23 02:16:20 字數 1471 閱讀 2846

由於next主題更新至7.0+版本後取消了_custom資料夾以及custom.styl檔案

大部分部落格都是基於之前的配置,因此導致新版本不相容

下面介紹在next7.0+版本下的背景設定

custom_file_path

:#head: source/_data/head.swig

#header: source/_data/header.swig

#sidebar: source/_data/sidebar.swig

#postmeta: source/_data/post-meta.swig

#postbodyend: source/_data/post-body-end.swig

#footer: source/_data/footer.swig

#bodyend: source/_data/body-end.swig

#variable: source/_data/variables.styl

#mixin: source/_data/mixins.styl

#style: source/_data/styles.styl

style

: source/_data/styles.styl

注意到custom_file_path中的檔案路徑為source/_data/styles.styl

理所應當想到在next資料夾的source目錄下新增檔案,但是,這並沒有用

事實上,這個source目錄指的是部落格所在資料夾的根目錄下的source資料夾,也就是儲存_post資料夾的目錄

知道了路徑,問題就簡單了,建立styles.styl檔案即可

$ cd .

./blog # blog是你存放部落格的資料夾

$ cd sourse

$ mkdir _data

$ cd _data

$ touch styles.styl

在檔案中加入以下**

// 新增背景

body

//部落格內容透明化

//文章內容的透明度設定

.content-wrap

//側邊框的透明度設定

.sidebar

//選單欄的透明度設定

.header-inner

//搜尋框(local-search)的透明度設定

.popup

沒錯就是這麼坑,

body

以上,解決了關於在next7.0+配置部落格背景的問題

透明背景的開 關設定

透明背景的開 關設定 出自 e mail amxh 21cn.com ie5.5和nn6以上的瀏覽器支援 frame iframe物件的 allowtransparency 方法,如果某物件的背景顏色設定為transparency的,它將繼承包含它容器的特性。例如 a.html如下 此iframe無...

css body的背景顏色設定

一 使用標籤型別定義樣式 1.內部樣式 body的背景顏色設定的乙個 樣例 charset utf 8 css背景 title head body h1style css3 例項 h1 body html 第二種寫法 這個是內聯樣式,直接對標籤操作 charset utf 8 css背景 title...

listview的背景顏色設定

listview的預設背景是黑色的 這樣的背景確實讓人蛋疼 有時候我們需要設定背景為白色或者其他顏色 於是我在listview的backgroud裡設定顏色為白色 結果發現當點選或拖動listview時顏色又變回了黑色 後經google發現,原來是android cachecolorhint在搞鬼 ...