/* 簡單來說,它是利用CSS區塊物件的DISPLAY可以設為不可見的特性*/
/* 把想隱藏的區塊設為 Display: none; */
/* 修改前請先備份原CSS,以下內容僅供參考 */
#boxCounter .boxCounter0 {
DISPLAY: none;
}
#boxSearch {
DISPLAY: none;
}
#boxDate {
DISPLAY: none;
}
#boxCategory {
DISPLAY: none;
}
#boxMySpace {
DISPLAY: none;
}
#content {
DISPLAY: none;
}
#pageheader H1 {
DISPLAY: none;
}
|