Closed john850512 closed 4 years ago
作者你好,首頁預覽下滑鼠移到文章內容上會字體會變成藍色,並且有超連結可以直接點進去的效果。 在你的網站中也可以看到這樣的效果。
如果想把這個功能關掉的話(也就是滑鼠移到時字體不會變藍色也不會有進入的超連結),請問有辦法可以修改嗎?
这个只能修改样式文件
謝謝回覆,已解決,修改/snail/layout/index.ejs
,將
<div class="post-preview">
後的<a href=...>
和<\a>
註解掉即可。
<div class="post-preview">
/* <a href="<%- config.root %><%- post.path %>"> */
<h2 class="post-title">
<img class="top_logo" src="/img/tp.png"/>
<%- post.title || "Untitled" %>
</h2>
<h3 class="post-subtitle">
<%- post.subtitle || "" %>
</h3>
<div class="post-content-preview">
<%- truncate(strip_html(post.content), {length: 200, omission: '...'}) %>...
</div>
/* </a> */
作者你好,首頁預覽下滑鼠移到文章內容上會字體會變成藍色,並且有超連結可以直接點進去的效果。 在你的網站中也可以看到這樣的效果。
如果想把這個功能關掉的話(也就是滑鼠移到時字體不會變藍色也不會有進入的超連結),請問有辦法可以修改嗎?