部落格園主題美化

阿柏發表於2024-08-28

申請JS許可權

部落格園 - 管理 - 設定 - 部落格側邊欄公告 - 申請JS許可權

頁面定製 CSS 程式碼

/* 隱藏頂部導航 */
#top_nav {
    display:none;
}

/* 隱藏頁尾 */
.footer {
    display: none;
}

/* 首頁文章標題字型 */
.postTitle {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 首頁正文字型(摘要)*/
body {
    font-size: 14px;
}

/* 文章頁標題字型(H1) */
.postTitle h1 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 文章頁正文字型 */
p {
    font-size: 14px;
}

相關文章