所以我终于在我的 WordPress 网站上安装了 Birch 字体。现在字体的大小不像我预期的那样(点击这里)。我试过编辑font-size, line-height, font-weight, font-style, ...
似乎没有任何效果。奇怪的是,在 iPhone 上它就像一个魅力。
在我的标题中,我添加了这个。
<style type="text/css" media="screen, print">
@font-face {
font-family: Birch;
src: url('../wp-content/themes/zenon-lite/fonts/birch.ttf') format('truetype'),
url('../wp-content/themes/zenon-lite/fonts/birch.eot') format('embedded-opentype'),
url('../wp-content/themes/zenon-lite/fonts/birch.woff') format('woff'),
url('../wp-content/themes/zenon-lite/fonts/birch.svg') format('svg');
font-weight: normal;
font-style: normal;
}
body { font-family: Birch, Tahoma; }
p {font-size: 1.5em;}
</style>