Mr.Seven

Results 122 comments of Mr.Seven

@liliangqi hello,这个布局技巧是CSS [flex-grow 属性](http://www.runoob.com/cssref/css3-pr-flex-grow.html)和[flex-shrink 属性](http://www.runoob.com/cssref/css3-pr-flex-shrink.html),具体改动代码建议你加到`source/css/home.css`样式文件里。 可以参考你贴的这个博客的布局代码,你试试吧 ```css #nav ul.links { display: -moz-flex; display: -webkit-flex; display: -ms-flex; display: flex; -moz-flex-grow: 1; -webkit-flex-grow: 1; -ms-flex-grow: 1; flex-grow: 1; -moz-flex-shrink: 1; -webkit-flex-shrink: 1;...

@WangHengbing 你试着参考一下这个Demo站点的源文件:https://github.com/iTimeTraveler/hexo-theme-hiero/tree/site-source

@jobryant 这个只需要在表格前面空一空白行就行了,不必要加*** | Left | Center | Right | | :--- | :----: | ----: | | aaa | bbb | ccc | | ddd | eee | fff |

Hello, @Allen-Liang 目前子配置文件`_config.yml`中没有配置小火箭显示不显示的选项,如果你不想显示小火箭,可以在`layout/layout.ejs`文件中[大约第37行左右](https://github.com/iTimeTraveler/hexo-theme-hiker/blob/master/layout/layout.ejs#L37),删除掉下面两行代码。 ```html ```

@icanfly 你可以参考一下我的Hexo源目录: https://github.com/iTimeTraveler/hexo-theme-hiero/tree/site-source

@icanfly 这块确实比较乱,我也被困扰过很久。。

@icanfly ok,我更新了我上面的Hexo源目录: https://github.com/iTimeTraveler/hexo-theme-hiero/tree/site-source 在 source/目录下你可以看到一个404.html 你看看这个就好了,Hexo支持原生的html页面。 我参考的是知乎的这个回答:[hexo 怎么创建 404 页面?](https://www.zhihu.com/question/21650209) 你试试吧

@niniyang 你参考一下我上面贴的Hexo的源目录,应该就能解决

@justinmars 不建议覆盖你的原目录,最好单独新建一个目录用来测试,然后对比你的和我这个目录中的区别就能解决很多问题了

Hello, 字体大小和字体你可以在`source/css/_variables.styl` 文件中60行左右改动,这里是大部分字体但不是全部哈,细节的字体可能还需要你具体看,不一定都在这里面哈