更改 HUGO-Xmin 主题中 post 标题的行高
Change the line height of the post title in HUGO-Xmin theme
有了R blogdown包,轻松搭建个人网站。我喜欢 yihui/hugo-xmin 主题的风格,因为它很简单。我在 Windows OS:
上的 'c:/test' 文件夹中使用 R blogdown 包构建了一个站点
install.packages('blogdown')
setwd('c:/test')
blogdown::new_site(theme='yihui/hugo-xmin')
然后我将以下文本写入 c:/test/content/post/
文件夹中的 .md 文件中:
---
title: "Summer Holiday in Southern France (VIII): Return to Nice (Videos) 带着俩娃游南法 (第十天): 重返尼斯 (视频)"
author: dapeng
date: "2017-08-17 15:22:06"
slug: summer-holiday-in-southern-france-viii-return-to-nice-videos
categories: [cn]
tags:
- cn
---
my text.
然后我预览了站点:
blogdown::serve_site()
但是,post 标题看起来像这样:
我想知道如何更改标题中的行高,默认情况下它太小了。我在 /themes/hugo-xmin/static/css/style.css
中添加了一个 line-height
命令,如下所示:
.menu, .article-meta, footer { text-align: center; }
.title { font-size: 1.1em; }
footer a { text-decoration: none; }
hr {
border-style: dashed;
line-height: 5em;
color: #ddd;
}
但是没有用。
感谢帮助!
标题不在 <hr>
标签中,而是 <h1>
。将这样的内容添加到您的 CSS 应该会增加 line-height:
h1 { line-height: 1.2em; }
有了R blogdown包,轻松搭建个人网站。我喜欢 yihui/hugo-xmin 主题的风格,因为它很简单。我在 Windows OS:
上的 'c:/test' 文件夹中使用 R blogdown 包构建了一个站点install.packages('blogdown')
setwd('c:/test')
blogdown::new_site(theme='yihui/hugo-xmin')
然后我将以下文本写入 c:/test/content/post/
文件夹中的 .md 文件中:
---
title: "Summer Holiday in Southern France (VIII): Return to Nice (Videos) 带着俩娃游南法 (第十天): 重返尼斯 (视频)"
author: dapeng
date: "2017-08-17 15:22:06"
slug: summer-holiday-in-southern-france-viii-return-to-nice-videos
categories: [cn]
tags:
- cn
---
my text.
然后我预览了站点:
blogdown::serve_site()
但是,post 标题看起来像这样:
我想知道如何更改标题中的行高,默认情况下它太小了。我在 /themes/hugo-xmin/static/css/style.css
中添加了一个 line-height
命令,如下所示:
.menu, .article-meta, footer { text-align: center; }
.title { font-size: 1.1em; }
footer a { text-decoration: none; }
hr {
border-style: dashed;
line-height: 5em;
color: #ddd;
}
但是没有用。
感谢帮助!
标题不在 <hr>
标签中,而是 <h1>
。将这样的内容添加到您的 CSS 应该会增加 line-height:
h1 { line-height: 1.2em; }