ppoffice / hexo-theme-icarus

A simple, delicate, and modern theme for the static site generator Hexo.
https://ppoffice.github.io/hexo-theme-icarus/
MIT License
6.39k stars 1.55k forks source link

有没有大神帮我解决以下widget出现的显示问题,全部显示在左侧且显示错误 #624

Closed wangyx1107 closed 4 years ago

wangyx1107 commented 4 years ago

如图

这个情况会随着blog里的一些代码出现,一旦删除那部分代码,就会恢复正常,比如图中第二篇blog只要加上\< !--more-- >就会出现该错误,但每次出现错误的代码有所不同,所以查不出原因。 可能是我代码写法存在不当导致的

还有一次是因为\<font color="xxxx"> \</font>出错,除了删除导致出错的代码外,未找到解决办法,希望有人指点。

同时在/tags/code下也出现了该错误s

附blog地址: ARTHAS (暂时删除了导致出错的代码保证首页正常,但/tags/code界面还存在错误)

ppoffice commented 4 years ago

@wangyx1107 请移除所有的标签

wangyx1107 commented 4 years ago

移除所以tag之后没有解决,一旦在第二篇blog中加入readmore还是会出错:)

ppoffice commented 4 years ago

@wangyx1107 请附上你的主题源码和配置文件

wangyx1107 commented 4 years ago
ppoffice commented 4 years ago

@wangyx1107

<!--more-->不可以插入在html标签的中间

<font color="#000080">Code:情人节限定款
<!--more-->
</font>

改为

<font color="#000080">Code:情人节限定款
</font>
<!--more-->
wangyx1107 commented 4 years ago

ok,解决了

谢谢