LifeType 中文開發論壇

支援 => 使用與操作 => 主題作者是: wangyu1314 於 八月 23, 2006, 12:04:59 上午



主題: 请教下,英文字体发生凹陷是怎么一回事?
作者: wangyu1314八月 23, 2006, 12:04:59 上午
http://www.cnprint.org/life/summary.php?

这儿大家看看,“vbb在apache 2.2.2环境下的rewrite设置规则发生变化” 这个标题的英文更低,中文更高,不好看呀,请教有没有调整办法?


主題: Re: 请教下,英文字体发生凹陷是怎么一回事?
作者: jeanytu八月 23, 2006, 12:25:55 下午
YA!這題我會 :-P
不過僅在 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;
}


主題: Re: 请教下,英文字体发生凹陷是怎么一回事?
作者: wangyu1314八月 23, 2006, 05:19:22 下午
YA!這題我會 :-P
不過僅在 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;
}


猛男真厉害,解决了,谢谢你呀。