YA!這題我會
不過僅在 1.0 的版本上試過,1.1 應該一樣吧?
如有誤,歡迎指正
最新發表文章的文章標題是由<h5>這個 tag 所控制
1. 請打開 */styles/summary.css
2. 找到 h5 的 CSS 語法
h5
{
font-family : trebuchet ms, tahoma, sans-serif;
font-size : 1.1em;
font-weight : bold;
vertical-align : bottom; padding : 0px;
text-align : left;
text-transform : capitalize;
margin-bottom: 5px;
margin-top: 9px;
}
3. 隱藏或刪除 vertical-align 那一行即可(應會套預設值 baseline)
h5
{
font-family : trebuchet ms, tahoma, sans-serif;
font-size : 1.1em;
font-weight : bold;
/*vertical-align : bottom;*/ padding : 0px;
text-align : left;
text-transform : capitalize;
margin-bottom: 5px;
margin-top: 9px;
}
4. 另外,還可順便改一下 text-transform,如果你希望標題的英文大小寫,跟原文一樣的話。
h5
{
font-family : trebuchet ms, tahoma, sans-serif;
font-size : 1.1em;
font-weight : bold;
/*vertical-align : bottom;*/
padding : 0px;
text-align : left;
/*text-transform : capitalize;*/ margin-bottom: 5px;
margin-top: 9px;
}