ch1oechao / hexo-theme-hollow

A pure and elegant theme for Hexo.
https://www.chen9.info/fragment/
MIT License
205 stars 39 forks source link

toc序号怎么去掉? #53

Closed He1o closed 2 years ago

He1o commented 2 years ago

image image 一共三个序号,我把list_number改为false第二个就没了 第三个是我自己的 可第一个序号怎么才能去掉?

AtomAlpaca commented 2 years ago

这个其实涉及cssol,即有序列表的样式问题,需要在hollow/source/css/toc.styl中设置 找到以下这一段

#article-toc-inner .toc-item {
    height: 2em;
    line-height: 2em;
    padding: 0;
    margin: 0;
}

在这里可以统一设置所有列表的样式,如果想要去掉,需要加上list-style-type: none;,即改为

#article-toc-inner .toc-item {
    list-style-type: none;
    height: 2em;
    line-height: 2em;
    padding: 0;
    margin: 0;
}

效果预览: Test

@He1o