简体   繁体   English

禁用博主中的下一个和上一个按钮

[英]disable Next and Prev buttons in blogger

I've added the code of the Next and Prev.我已经添加了 Next 和 Prev 的代码。 buttons in my blog https://www.bookskiki.com/ but now I don't want to use them more, I tried to remove the code but when I removed it the content also removed.我博客https://www.bookskiki.com/ 中的按钮,但现在我不想更多地使用它们,我试图删除代码,但是当我删除它时,内容也被删除了。 So tell please how to solve this.所以请告诉如何解决这个问题。

the code编码

 <script src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'/> <div id='siki-out'/> <div class='page-navigation'> <div class='siki-next-prev' id='siki_prev'> <b:if cond='data:blog.locale.languageDirection == &quot;rtl&quot;'> <a><span>Back</span><span class='siki-prev'/></a> <b:else/> <a><span>Back</span><span class='siki-next'/></a> </b:if> </div> <div class='siki-next-prev' id='siki_next'> <b:if cond='data:blog.locale.languageDirection == &quot;rtl&quot;'> <a><span>Read More</span><span class='siki-next'/></a> <b:else/> <a><span>Read More</span><span class='siki-prev'/></a> </b:if> </div> <div id='siki-page-number'/> </div> <script>

Have you tried to add this to your CSS:您是否尝试将其添加到您的 CSS 中:

#siki_prev, #siki_next {
    display: none !important;
}

Or if you want the number to be gone too:或者,如果您也希望该号码消失:

#siki_prev, #siki_next, #siki-page-number {
    display: none !important;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM