@[email protected] 你先看看article.html
的結構,再看怎麼改CSS
@juju 这个模板没有article.html……我拆了几个博客的文件对比着看了也没什么头绪
@[email protected] ???是哪個主題呀
@Hydrangea 改一下list.html的head吧,加一条css进去?
@Hydrangea 或者给list.html的<a>加一个class
```
<span>
<a class="" href="{{ .Permalink }}">{{ if .Title }} {{ .Title }} {{ else }} Untitled {{ end }}</a>
</span>
```
https://github.com/monkeyWzr/hugo-theme-cactus/blob/main/layouts/_default/list.html
@boxue 啊看了一下就是我之前改的部分
<a class="homelink" href="{{ .Permalink }}">{{ if .Title }} {{ .Title }} {{ else }} Untitled {{ end }}</a>
.homelink {
text-decoration:none;
}
不知为何不管用……
我在index.html
里找到相似的段落,写<a class="h2" href="{{ .Permalink }}">{{ if .Title }} {{- .Title -}} {{ else }} {{- print "Untitled" -}}{{ end }}</a></span>
是可以修改样式为H2的
但写成homelink
也无效,好像H4之后的样式也是无效的。