1. 刪除MIB側欄廣告
. 方法一:進入「部落格後台」→「樣式管理」→「部落格CSS 原始碼」,按下ctrl+F,找到#links這段程式碼後加入
margin-top:-320px;
.方法二:進入「部落格後台」→「樣式管理」→「部落格CSS 原始碼」,在最下方加入這段字
#links-row-1 .box:nth-child(1){display: none !important;} /*刪除MIB側欄廣告*/
2.刪除文章下方兩則google廣告
. 方法一:進入「部落格後台」→「側欄管理」→「頁尾描述」,選擇「開啟」,在內容輸入以下文字
<script type="text/javascript">
var Body = document.getElementsByClassName("article-body");
if (Body.length==1)
{
Body[0].lastElementChild.style.display = "none";
}
</script>
.方法二:進入「部落格後台」→「樣式管理」→「部落格CSS 原始碼」,在最下方加入這兩段字
#pixblogad{display:none;}
#pixblogad-banner2{display:none;} /*刪除文章下方兩則google廣告)*/
3.刪除您可能有興趣的文章
進入「部落格後台」→「樣式管理」→「部落格CSS 原始碼」,在最下方加入這段字
#content .recommended-posts {display:none; } /*刪除您可能有興趣的文章)*/
4.刪除Pixnet置頂藍色bar
進入「部落格後台」→「樣式管理」→「部落格CSS 原始碼」,在最下方加入這兩段字
.main-container{padding-top: 0px !important;}
.navbar{display:none !important;} /*刪除Pixnet置頂藍色bar*/
5.刪除Pixnet領航員Happix
進入「部落格後台」→「樣式管理」→「部落格CSS 原始碼」,在最下方加入這段字
#pilot div.pixnet-happix-pilot__launcher-bubble {display: none;} /*刪除Pixnet領航員Happix*/
留言列表